Vulcan/client/templates/comment_list.html

12 lines
235 B
HTML
Raw Normal View History

<template name="comment_list">
{{#if has_comments}}
2012-09-13 14:57:57 +09:00
<ul class="comments comment-list">
{{#each child_comments}}
{{> comment_item}}
{{/each}}
</ul>
{{else}}
<p>No comments.</p>
{{/if}}
</template>