live_beats/lib/live_beats_web/templates/layout/live.html.heex

14 lines
418 B
Plaintext
Raw Normal View History

2021-09-03 13:57:15 +00:00
<main>
2021-11-02 16:24:53 +00:00
<p class="alert alert-info fade-in-scale" role="alert"
2021-09-02 18:00:57 +00:00
phx-click="lv:clear-flash"
phx-value-key="info"><%= live_flash(@flash, :info) %></p>
2021-11-02 16:24:53 +00:00
<p class="alert alert-danger fade-in-scale" role="alert"
2021-09-02 18:00:57 +00:00
phx-click="lv:clear-flash"
phx-value-key="error"><%= live_flash(@flash, :error) %></p>
2021-11-05 00:49:19 +00:00
<.live_component module={LiveBeatsWeb.LayoutComponent} id="layout" />
2021-09-02 18:00:57 +00:00
<%= @inner_content %>
</main>