Kumora/templates/base.html.twig
Melaine Gérard f3dcd7b37c
All checks were successful
Apply PHP CS Fixer / php-cs-fixer (push) Successful in 16s
CI / build-test (push) Successful in 1m27s
rector / Rector (push) Successful in 1m42s
sparkles: Correctifs divers :
- Renommage "rôle de dossier"
- Ajout illustation homepage
- Ajout footer
- Francisation Cloud et Uploader
- Ajout "S" manquant Action
- Ajout lien utiles homepage
- Fix title bouton permission
- Fix redirection admin
- Fix Rename Parent Directory
- Remplacement Dropzone par Input file standard
2025-02-05 23:08:55 +01:00

23 lines
758 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" class="flex flex-col min-h-screen">
{% include "partials/navbar.html.twig" %}
<div class="flex-1">
{% include "partials/alerts.html.twig" %}
{% block body %}{% endblock %}
</div>
{% include "partials/footer.html.twig" %}
</body>
</html>