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

14 lines
351 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>
<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} />
2023-07-09 20:01:03 +02:00
</section>
2023-09-09 10:24:22 +02:00
<section>
<.tag_list notes={@notes} />
2023-07-09 20:01:03 +02:00
</section>
2023-09-09 10:24:22 +02:00
</section>