Vulcan/client/views/comments/comment_list.html

11 lines
246 B
HTML

<template name="comment_list">
{{#if has_comments}}
<ul class="comments comment-list">
{{#each child_comments}}
{{> comment_item}}
{{/each}}
</ul>
{{else}}
<p>{{i18n "No comments."}}</p>
{{/if}}
</template>