19 lines
635 B
Twig
19 lines
635 B
Twig
|
|
<!doctype html>
|
||
|
|
<html lang="{{ app.request.locale }}">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
|
||
|
|
<title>{% block title %}Accueil{% endblock %}</title>
|
||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
|
|
<meta name="robots" content="noindex, nofollow">
|
||
|
|
{{ vite_asset('app.js', []) }}
|
||
|
|
|
||
|
|
</head>
|
||
|
|
{# Le corps aura un fond gris clair pour correspondre au fond du logo #}
|
||
|
|
<body class="flex flex-col min-h-screen bg-gray-100">
|
||
|
|
{% block body %}{% endblock %}
|
||
|
|
</body>
|
||
|
|
</html>
|