1
0
Fork 0
mirror of https://gitlab.com/Alamantus/Readlebee.git synced 2025-11-02 09:26:52 +01:00
Readlebee/server/views/partials/home-logged-in.hbs

16 lines
No EOL
318 B
Handlebars

<section>
<h2 class="subtitle">You are logged in!</h2>
{{#each statuses }}
<article class="card">
<header>
<p>A status about {{title}}</p>
</header>
<footer>
<button>Like!</button>
<button class="small dangerous">Dislike!</button>
</footer>
</article>
{{/each}}
</section>