17 lines
500 B
Text
17 lines
500 B
Text
<section class="section">
|
|
<div class="container">
|
|
<%= if live_flash(@flash, :info) do %>
|
|
<p class="alert alert-info" role="alert"
|
|
phx-click="lv:clear-flash"
|
|
phx-value-key="info"><%= live_flash(@flash, :info) %></p>
|
|
<% end %>
|
|
|
|
<%= if live_flash(@flash, :error) do %>
|
|
<p class="alert alert-danger" role="alert"
|
|
phx-click="lv:clear-flash"
|
|
phx-value-key="error"><%= live_flash(@flash, :error) %></p>
|
|
<% end %>
|
|
|
|
<%= @inner_content %>
|
|
</div>
|
|
</main>
|