mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
17 lines
580 B
HTML
17 lines
580 B
HTML
<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>
|
|
<a href="#" class="comment-reply">Reply</a>
|
|
</div>
|
|
</li>
|
|
</template>
|