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

25 lines
711 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 %>
2024-09-01 20:22:01 +00:00
<%= stylesheet_link_tag :application %>
<%= javascript_include_tag :application, type: :module, defer: true %>
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">
2024-09-01 20:22:01 +00:00
<%= link_to 'Code source', 'https://git.asso-purr.eu.org/purr/demarches', class: %i[link-primary ms-3] %>
<span class="ms-1">(Licence AGPLv3)</span>
<%= link_to 'Mentions légales', legal_path, class: %i[link-primary ms-3] %>
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>