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

15 lines
281 B
Text
Raw Normal View History

2023-09-09 10:24:22 +02:00
<header class="page-header">
<h1><%= @channel.name %></h1>
<p><%= Markdown.render(@channel.content) |> raw %></p>
</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} />
2023-07-09 20:01:03 +02:00
</section>
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 16:08:30 +02:00
</section>