livebook/lib/live_book_web/templates/layout/live.html.leex

20 lines
680 B
Text
Raw Normal View History

2021-01-08 05:13:17 +08:00
<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>
2021-01-08 04:16:54 +08:00
2021-01-08 05:13:17 +08:00
<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>
2021-01-08 04:16:54 +08:00
<%= @inner_content %>
</main>