29 lines
722 B
Text
29 lines
722 B
Text
<!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>
|