hydra-sql/templates/base.html.twig
aardouin f5d3a8d83b
Some checks are pending
Cadoles/hydra-sql/pipeline/pr-develop Build started...
feat (altcha) #4827 upgrade d'altcha en v2
2025-06-20 15:11:58 +02:00

20 lines
622 B
Twig

<!DOCTYPE html>
<html lang="{{app.request.session.get('_locale') is not null ? app.request.session.get('_locale') : 'fr'}}">
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{{ encore_entry_link_tags('bootstrap-css') }}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{{ encore_entry_script_tags('bootstrap-js') }}
{% endblock %}
</body>
</html>