✨ feat(search): Ajoute EsySearch pour la recherche globale dans le CRM
Ajoute le service EsySearch, initialise l'index des admins et crée
une page de recherche unifiée. Active PWA en prod.
```
23 lines
768 B
Twig
23 lines
768 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>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', []) }}
|
|
|
|
{% if app.environment != 'dev' %}
|
|
{{ pwa(swAttributes={ 'nonce': csp_nonce('script') }) }}
|
|
{% endif %}
|
|
|
|
</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>
|