Vulcan/client/templates/comment_list.html
2012-09-09 13:38:56 +09:00

11 lines
222 B
HTML

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