✨ feat(dashboard/base.twig): Ajoute les favicons et manifeste pour PWA. ➕ feat(.env): Ajoute la clé de recherche ESY.
24 lines
1.0 KiB
Twig
24 lines
1.0 KiB
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>Ludikevent | {% 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', []) }}
|
|
<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" />
|
|
</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>
|