demarches/app/views/layouts/application.html.erb
2024-06-08 21:14:53 +02:00

29 lines
722 B
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<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 %>
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
<%= javascript_importmap_tags %>
</head>
<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>
</html>