Files
fizzy/app/views/layouts/public.html.erb
T
2025-06-10 12:18:56 -05:00

19 lines
473 B
Plaintext

<!DOCTYPE html>
<html>
<%= render "layouts/shared/head" %>
<body class="public" data-controller="local-time timezone-cookie" data-action="turbo:morph@window->local-time#refreshAll">
<header id="header">
<a href="#main-content" class="skip-navigation btn">Skip to main content</a>
<%= yield :header %>
</header>
<main id="main">
<%= yield %>
</main>
<footer id="footer">
<%= yield :footer %>
</footer>
</body>
</html>