Vulcan/client/views/comments/comment_list.html
2014-07-05 11:42:28 +09:00

11 lines
265 B
HTML

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