25 lines
793 B
Handlebars
25 lines
793 B
Handlebars
<div class="comment">
|
|
<div class="comment__user">
|
|
<img src="{{this.User.Avatar}}" class="pfp" width="24" height="24" loading="lazy">
|
|
<a href="/user/{{this.User.Username}}">
|
|
<p class="comment__user__username"><b>{{this.User.Username}}</b></p>
|
|
</a>
|
|
</div>
|
|
<div>
|
|
{{{this.Comment}}}
|
|
<p>
|
|
<span title="{{this.CreatedAt}}">{{this.RelTime}}</span>
|
|
{{#if this.DeletedAt}}
|
|
<span class="comment__updatedDate">(deleted {{this.DeletedAt}})</span>
|
|
{{/if}}
|
|
|
|
|
<span class="material-icons-outlined">thumb_up</span> {{this.Upvotes}}
|
|
<span class="material-icons-outlined">thumb_down</span> {{this.Downvotes}}
|
|
</p>
|
|
</div>
|
|
<div class="replies">
|
|
{{#each this.Comments}}
|
|
{{> partials/comment }}
|
|
{{/each}}
|
|
</div>
|
|
</div> |