chiya/lib/chiya_web/controllers/page_html/bookmarks.html.heex

15 lines
336 B
Text
Raw Normal View History

2023-09-09 10:24:22 +02:00
<header class="page-header">
<h1><%= Enum.count(@notes) %> Bookmarks</h1>
</header>
2023-09-09 10:24:22 +02:00
<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>
2023-08-02 20:48:45 +02:00
2023-09-09 10:24:22 +02:00
<section>
<.tag_list notes={@notes} />
</section>
2023-09-09 10:24:22 +02:00
</section>