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

23 lines
515 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>
2024-09-01 14:51:03 +00:00
<title>Association PURR :: Nos démarches</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<%= csrf_meta_tags %>
<%= stylesheet_link_tag "application" %>
<%= javascript_importmap_tags %>
2024-06-08 19:14:53 +00:00
</head>
2024-06-08 17:56:04 +00:00
2024-09-01 14:51:03 +00:00
<body class="vh-100 d-flex flex-column">
2024-06-08 19:14:53 +00:00
2024-09-01 14:51:03 +00:00
<main class="flex-grow-1 d-flex flex-column p-2">
<%= yield %>
2024-06-08 19:14:53 +00:00
</main>
2024-09-01 14:51:03 +00:00
<footer class="p-2 text-end">
<%= link_to 'Mentions légales', legal_path, class: %i[link-primary] %>
2024-06-08 19:14:53 +00:00
</footer>
2024-09-01 14:51:03 +00:00
2024-06-08 19:14:53 +00:00
</body>
2024-06-08 17:56:04 +00:00
</html>