chiya/lib/chiya_web/controllers/page_html/bookmarks.html.heex
2023-09-09 10:24:22 +02:00

14 lines
336 B
Text

<header class="page-header">
<h1><%= Enum.count(@notes) %> Bookmarks</h1>
</header>
<section class="mt-6 grid grid-cols-1 md:grid-cols-3 gap-3">
<section class="col-span-1 md:col-span-2">
<.note_list notes={@notes} layout={@channel.layout} />
</section>
<section>
<.tag_list notes={@notes} />
</section>
</section>