Vulcan/client/templates/comments.html
2012-08-22 23:40:09 -04:00

11 lines
169 B
HTML

<template name="comments">
{{#if show}}
<ul>
{{#each comments}}
{{> comment}}
{{/each}}
</ul>
{{else}}
<p>No comments.</p>
{{/if}}
</template>