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

14 lines
264 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 14:37:26 +02:00
<section class="page-grid">
<section>
2023-09-09 10:24:22 +02:00
<.note_list notes={@notes} layout={@channel.layout} />
</section>
2023-08-02 20:48:45 +02:00
2023-09-09 14:37:26 +02:00
<aside>
2023-09-09 15:06:16 +02:00
<.tag_bar notes={@notes} />
2023-09-09 14:37:26 +02:00
</aside>
2023-09-09 10:24:22 +02:00
</section>