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>
|
|
|
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
|
{{ vite_asset('app.js', []) }}
|
2026-01-16 08:28:12 +01:00
|
|
|
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico" />
|
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Intranet " />
|
|
|
|
|
<link rel="manifest" href="/site.webmanifest" />
|
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>
|