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