Vulcan/client/templates/comment.html

32 lines
892 B
HTML

<template name="comment">
<li class="comment">
<div class="comment-content">
<div class="comment-actions">
<a class="upvote" href="/">
<i class="icon-up"></i>
<span>upvote</span>
</a>
<a class="downvote" href="/">
<i class="icon-down"></i>
<span>downvote</span>
</a>
</div>
<div class="comment-meta">
<a class="comment-username">{{submitter}}</a>
<span class="comment-time">{{ago}}</span>
<a class="comment-permalink icon-link">link</a>
</div>
<div class="comment-text">{{body}}</div>
<a href="#" class="comment-reply">Reply</a>
</div>
{{#unless repress_recursion}}
<ul class="comment-children">
{{#each child_comments}}
{{#with this}}
{{> comment}}
{{/with}}
{{/each}}
</ul>
{{/unless}}
</li>
</template>