mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 09:21:21 +01:00
9 lines
189 B
HTML
9 lines
189 B
HTML
{{#each comments as comment}}
|
|
<div class='comment'>
|
|
<span class='meta'>
|
|
{{comment.author}} wrote {{elapsed(comment.time, time)}} ago:
|
|
</span>
|
|
|
|
{{{comment.html}}}
|
|
</div>
|
|
{{/each}} |