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

38 lines
1.2 KiB
Text
Raw Normal View History

<section class="mx-auto max-w-xl p-10 bg-theme-background1">
<h1 class="text-3xl font-extrabold leading-10 tracking-tight text-theme-primary">
2023-04-03 22:22:02 +02:00
<%= @settings.title %>
</h1>
<p class="mt-4 leading-7 text-theme-base/75 uppercase font-semibold">
2023-04-03 22:22:02 +02:00
<%= @settings.subtitle %>
</p>
</section>
<section class="mx-auto max-w-xl text-sm my-8">
<ul class="flex flex-wrap gap-3">
<li>
<a
href="#"
2023-06-22 21:09:17 +02:00
class="inline-block text-theme-base px-3 py-2.5 border border-theme-background1 hover:bg-theme-background1 rounded transition font-semibold"
>
<.icon name="hero-megaphone" />
</a>
</li>
<%= for channel <- @channels do %>
<li>
<a
2023-06-02 07:07:22 +02:00
href={~p"/channel/#{channel.slug}"}
class="inline-block text-theme-base px-3 py-2.5 border border-theme-background1 hover:bg-theme-background1 rounded transition font-semibold"
>
<%= channel.name %>
</a>
</li>
<% end %>
</ul>
</section>
<%= if @channel do %>
<section class="mx-auto max-w-xl mt-8 border-t border-theme-background1">
<.note_list notes={@channel.notes} layout={@channel.layout} />
</section>
<% end %>