chiya/lib/chiya_web/controllers/page_html/channel.html.heex
2023-09-09 15:06:16 +02:00

14 lines
322 B
Text

<header class="page-header">
<h1><%= @channel.name %></h1>
<p><%= Markdown.render(@channel.content) |> raw %></p>
</header>
<section class="page-grid">
<section>
<.note_list notes={@channel.notes} layout={@channel.layout} />
</section>
<aside>
<.tag_bar notes={@channel.notes} />
</aside>
</section>