Vulcan/client/templates/comment.html

27 lines
774 B
HTML
Raw Normal View History

2012-08-22 23:40:09 -04:00
<template name="comment">
<li class="comment">
<div class="comment-content">
<div class="comment-actions">
<a class="upvote icon-up" href="/">upvote</a>
<a class="downvote icon-down" href="/">downvote</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>
2012-08-23 00:15:48 -04:00
<a href="#" class="comment-reply">Reply</a>
2012-08-22 23:40:09 -04:00
</div>
2012-08-23 00:51:31 -04:00
{{#unless repress_recursion}}
2012-08-23 00:35:31 -04:00
<ul class="comment-children">
2012-08-23 00:51:31 -04:00
{{#each child_comments}}
2012-08-23 00:35:31 -04:00
{{#with this}}
{{> comment}}
{{/with}}
{{/each}}
</ul>
2012-08-23 00:51:31 -04:00
{{/unless}}
2012-08-22 23:40:09 -04:00
</li>
</template>