cannery/lib/cannery_web/templates/layout/live.html.leex

22 lines
635 B
Plaintext
Raw Normal View History

2021-03-11 21:12:55 -05:00
<main role="main" class="container min-w-full min-h-full">
2021-09-10 00:35:36 -04:00
<header>
<%= live_component CanneryWeb.Live.Component.Topbar, current_user: assigns[:current_user] %>
<div class="mx-8 my-2 flex flex-col space-y-4 text-center">
<%= if live_flash(@flash, :info) do %>
<p class="alert alert-info" role="alert">
<%= live_flash(@flash, :info) %>
</p>
<% end %>
<%= if live_flash(@flash, :error) do %>
<p class="alert alert-danger" role="alert">
<%= live_flash(@flash, :error) %>
</p>
<% end %>
</div>
</header>
2021-03-11 21:12:55 -05:00
<%= @inner_content %>
</main>