as_deps_example/apps/hello_world_web/lib/hello_world_web/templates/layout/live.html.heex

12 lines
335 B
Plaintext
Raw Normal View History

2022-11-30 16:32:19 -06:00
<main class="container">
<p class="alert alert-info" role="alert"
phx-click="lv:clear-flash"
phx-value-key="info"><%= live_flash(@flash, :info) %></p>
<p class="alert alert-danger" role="alert"
phx-click="lv:clear-flash"
phx-value-key="error"><%= live_flash(@flash, :error) %></p>
<%= @inner_content %>
</main>