sop.epic/views/all_comments.html

8 lines
256 B
HTML
Raw Normal View History

2023-07-02 05:30:36 +00:00
<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>