Files
fizzy/app/views/layouts/application.html.erb
T

31 lines
890 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<%= render "layouts/shared/head" %>
<body data-controller="local-time timezone-cookie" data-action="turbo:morph@window->local-time#refreshAll">
<header class="header <%= @header_class %>" id="header">
<a href="#main" class="header__skip-navigation btn" data-turbo="false">Skip to main content</a>
<%= yield :header %>
</header>
<%= render "layouts/shared/flash" %>
<%= render "layouts/shared/time_zone" if Current.user %>
<main id="main">
<%= yield %>
</main>
<footer id="footer">
<%= yield :footer %>
<% if Current.user && !@hide_footer_frames %>
<div id="footer_frames" data-turbo-permanent="true">
<%= render "bar/bar" %>
<%= render "my/pins/tray" %>
<%= render "notifications/tray" %>
</div>
<% end %>
</footer>
</body>
</html>