demarches/app/views/layouts/application.html.erb
2024-09-01 16:55:38 +02:00

22 lines
515 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 %>
<%= stylesheet_link_tag "application" %>
<%= javascript_importmap_tags %>
</head>
<body class="vh-100 d-flex flex-column">
<main class="flex-grow-1 d-flex flex-column p-2">
<%= yield %>
</main>
<footer class="p-2 text-end">
<%= link_to 'Mentions légales', legal_path, class: %i[link-primary] %>
</footer>
</body>
</html>