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

24 lines
711 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_include_tag :application, type: :module, defer: true %>
</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 '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] %>
</footer>
</body>
</html>