2025-12-11 17:22:26 +01:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="{{ app.request.locale }}">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
2026-01-15 18:04:01 +01:00
|
|
|
<title>Ludikevent | {% block title %}Accueil{% endblock %}</title>
|
2025-12-11 17:22:26 +01:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
{{ vite_asset('app.js', []) }}
|
2026-01-16 09:23:23 +01:00
|
|
|
|
2026-01-19 13:52:41 +01:00
|
|
|
{% if app.environment != 'dev'%}
|
2026-01-16 10:34:29 +01:00
|
|
|
{{ pwa(swAttributes={ 'nonce': csp_nonce('script') }) }}
|
|
|
|
|
{% endif %}
|
2026-01-16 09:23:23 +01:00
|
|
|
|
2025-12-11 17:22:26 +01:00
|
|
|
</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>
|