blob: 560e918bc74295c5aedde7d851122d4f3209acf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{define "comments"}}
<div id="post-comments">
{{range $comment := .comments }}
<span class="comment-author">by <a href="/u/{{$comment.username}}">{{$comment.username}}</a></span>
<span class="comment-created-at">{{$comment.created_at | relative_time}}</span>
<span class="actions">
<span class="action-flag">Flag</span>
<span class="action-hide">Hide</span>
<span class="action-reply">Reply</span>
</span>
<div class="c-alert c-alert--info" role="alert">
{{ $comment.body }}
</div>
{{ end }}
</div>
{{end}}
|