fediglam/src/main/controllers/web/timelines/global.tmpl.html

13 lines
194 B
HTML

<header>
<h2>Global Timeline</h2>
</header>
<ol>
{#for .notes |$note| =}
<li>
<header>@{$note.author.username}</header>
<div>
{$note.content}
</div>
</li>
{/for =}
</ol>