demarches/app/views/layouts/application.html.erb

30 lines
722 B
Text
Raw Normal View History

2024-06-08 17:56:04 +00:00
<!DOCTYPE html>
2024-06-08 19:14:53 +00:00
<html lang="fr">
<head>
<title>Association PURR :: Nos démarches</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
2024-06-08 17:56:04 +00:00
2024-06-08 19:14:53 +00:00
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
<%= javascript_importmap_tags %>
</head>
2024-06-08 17:56:04 +00:00
2024-06-08 19:14:53 +00:00
<body>
<header class="mb-4">
<h1>
<%= link_to 'Nos démarches', root_path, class: %i[nav-link] %>
</h1>
</header>
<main class="container">
<%= yield %>
</main>
<footer class="mb-0 px-2 py-3 small text-center">
<%= link_to 'À propos', apropos_path, class: %i[link-primary] %> | 
<%= link_to 'Mentions légales', legal_path, class: %i[link-primary] %>
</footer>
</body>
2024-06-08 17:56:04 +00:00
</html>