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

11 lines
266 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-01-20 11:42:03 +09:00
{{#each threadModules}}
2015-04-13 16:29:33 +09:00
{{> Template.dynamic template=template data=..}}
2015-01-20 11:42:03 +09:00
{{/each}}
</template>