sop.epic/views/all_comments.html
2023-07-01 23:30:36 -06:00

8 lines
256 B
HTML

<ul class="list reply-list test-reply-list">
{{range $comment := .PinnedComments}}
{{template "render_comment.html" $comment}}
{{end}}
{{range $comment := .Comments}}
{{template "render_comment.html" $comment}}
{{end}}
</ul>