fraction.io
Version:
Your personalized community aggregator.
16 lines (15 loc) • 438 B
HTML
<template name="listComments">
<section class="listComments">
<div class="col-sm-7 col-sm-offset-5">
{{#if session 'showComments'}}
{{#each session 'comments'}}
{{#each oldChildren}}
{{>viewComment}}
{{else}}
{{{info 'No comments yet.' 'Just wait a few minutes, surely <em>someone</em> has something to say.'}}}
{{/each}}
{{/each}}
{{/if}}
</div>
</section>
</template>