0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 01:11:24 +01:00
svelte/test/js/samples/each-block-changed-check/input.html
2017-04-17 16:45:49 -04:00

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>