mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
10 lines
283 B
HTML
10 lines
283 B
HTML
<template name="comment_list">
|
|
<ul class="comments comment-list" aria-live="polite">
|
|
{{#each child_comments}}
|
|
{{> UI.dynamic template=comment_item}}
|
|
{{/each}}
|
|
</ul>
|
|
{{#each threadModules}}
|
|
{{> UI.dynamic template=getTemplate data=..}}
|
|
{{/each}}
|
|
</template>
|