Vulcan/packages/telescope-comments/lib/client/templates/comment_list.html

9 lines
213 B
HTML
Raw Normal View History

<template name="comment_list">
<ul class="comments comment-list" aria-live="polite">
2014-07-05 16:21:28 +09:00
{{#each child_comments}}
2015-04-13 16:29:33 +09:00
{{> comment_item}}
2014-07-05 16:21:28 +09:00
{{/each}}
</ul>
2015-05-08 11:00:15 +09:00
{{> modules "commentThreadBottom"}}
</template>