livebook/lib/live_book_web/templates/layout/live.html.leex
2021-01-07 22:13:17 +01:00

20 lines
680 B
Plaintext

<nav class="flex items-center justify-between px-2 py-3 bg-purple-600">
<div class="w-full px-8">
<%= live_redirect "LiveBook", to: "/", class: "text-sm font-bold leading-relaxed inline-block mr-4 py-2 whitespace-no-wrap uppercase text-white" %>
</div>
</nav>
<main role="main" class="container mx-auto flex flex-col align-center">
<div>
<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>
</div>
<%= @inner_content %>
</main>