Kumora/templates/base.html.twig
Melaine Gérard d6e1679aba
Some checks failed
Apply PHP CS Fixer / php-cs-fixer (push) Successful in 17s
CI / build-test (push) Failing after 7s
rector / Rector (push) Failing after 7s
Ajout réinitialisation du mot de passe
2025-01-16 22:33:04 +01:00

20 lines
637 B
Twig
Executable File

<!DOCTYPE html>
<html lang="fr" class="bg-white dark:bg-gray-800 dark:text-white">
<head>
<meta charset="UTF-8">
<title>Kumora - {% block title %}Accueil{% endblock %}</title>
<link rel="icon" href="{{ asset('images/favicon.ico') }}">
{% block stylesheets %}
{% endblock %}
{% block javascripts %}
{% block importmap %}{{ importmap('app') }}{% endblock %}
{% endblock %}
</head>
<body data-turbo="false">
{% include "partials/navbar.html.twig" %}
{% include "partials/alerts.html.twig" %}
{% block body %}{% endblock %}
</body>
</html>