memEx/lib/lokal_web/templates/layout/live.html.heex

16 lines
605 B
Plaintext
Raw Normal View History

2022-02-12 23:26:29 -05:00
<main class="m-0 p-0 w-full h-full">
2022-01-22 15:00:30 -05:00
<LokalWeb.Component.Topbar.topbar current_user={assigns[:current_user]}>
2022-01-22 13:01:36 -05:00
</LokalWeb.Component.Topbar.topbar>
<%= if @flash && @flash |> Map.has_key?(:info) do %>
2022-01-22 15:00:30 -05:00
<p class="alert alert-info" role="alert" phx-click="lv:clear-flash" phx-value-key="info">
<%= live_flash(@flash, :info) %>
</p>
<% end %>
2022-01-22 13:01:36 -05:00
<%= if @flash && @flash |> Map.has_key?(:error) do %>
2022-01-22 15:00:30 -05:00
<p class="alert alert-danger" role="alert" phx-click="lv:clear-flash" phx-value-key="error">
<%= live_flash(@flash, :error) %>
</p>
2022-01-22 13:01:36 -05:00
<% end %>
<%= @inner_content %>
</main>