2022-12-29 13:16:16 -05:00
|
|
|
<details class="comments">
|
|
|
|
<summary>
|
2022-12-30 18:15:35 -05:00
|
|
|
Show
|
|
|
|
<b
|
|
|
|
>{{ (len .Comments) }} comment{{ if gt (len .Comments) 1 }}s{{
|
|
|
|
end }}</b
|
|
|
|
>
|
2022-12-29 13:16:16 -05:00
|
|
|
</summary>
|
|
|
|
<div class="comments-parent">
|
|
|
|
{{ range $comment := .Comments }}
|
|
|
|
<div class="comment-parent">
|
|
|
|
<div class="comment">
|
2022-12-30 18:11:59 -05:00
|
|
|
<div class="comment-top">
|
|
|
|
<div class="comment-score" title="Comment Upvotes">
|
|
|
|
{{ $comment.Upvotes }}
|
|
|
|
</div>
|
2022-12-30 18:15:35 -05:00
|
|
|
<div class="comment-body">{{ $comment.Text }}</div>
|
2022-12-29 13:16:16 -05:00
|
|
|
</div>
|
|
|
|
<div class="comment-author">
|
|
|
|
Commented {{ $comment.Timestamp }} by
|
|
|
|
<a
|
2023-02-20 14:17:24 -05:00
|
|
|
href="{{ $comment.AuthorURL }}"
|
2022-12-29 13:16:16 -05:00
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>{{ $comment.AuthorName }}</a
|
|
|
|
>.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</details>
|