mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
11 lines
235 B
HTML
11 lines
235 B
HTML
<template name="comment_list">
|
|
{{#if has_comments}}
|
|
<ul class="comments comment-list">
|
|
{{#each child_comments}}
|
|
{{> comment_item}}
|
|
{{/each}}
|
|
</ul>
|
|
{{else}}
|
|
<p>No comments.</p>
|
|
{{/if}}
|
|
</template>
|