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

13 lines
416 B
Text
Raw Normal View History

2023-04-03 22:22:02 +02:00
<div class="mx-auto max-w-xl mx-4 lg:mx-0">
<h1 class="mt-16 text-[2rem] font-semibold font-serif leading-10 tracking-tighter text-theme-heading">
2023-04-03 22:22:02 +02:00
<%= @channel.name %>
</h1>
<p class="mt-4 text-base leading-7 text-theme-base">
<%= @channel.content %>
</p>
2023-03-31 13:23:18 +02:00
2023-04-03 22:22:02 +02:00
<div class="w-full mt-6 sm:w-auto flex flex-col gap-1.5">
2023-05-07 10:30:32 +02:00
<.note_list notes={@channel.notes} layout={@channel.layout} />
2023-03-31 16:58:10 +02:00
</div>
2023-04-10 12:08:19 +02:00
</div>