mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
11 lines
169 B
HTML
11 lines
169 B
HTML
<template name="comments">
|
|
{{#if show}}
|
|
<ul>
|
|
{{#each comments}}
|
|
{{> comment}}
|
|
{{/each}}
|
|
</ul>
|
|
{{else}}
|
|
<p>No comments.</p>
|
|
{{/if}}
|
|
</template>
|