mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 01:11:24 +01:00
13 lines
234 B
HTML
13 lines
234 B
HTML
{{#each comments as comment, i}}
|
|
<div class='comment'>
|
|
<strong>{{i}}</strong>
|
|
|
|
<span class='meta'>
|
|
{{comment.author}} wrote {{elapsed(comment.time, time)}} ago:
|
|
</span>
|
|
|
|
{{{comment.html}}}
|
|
</div>
|
|
{{/each}}
|
|
|
|
<p>{{foo}}</p> |