<!DOCTYPE html>
<html class="no-js" lang="fr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="manifest" href="/manifest.webmanifest">
<title>{% block title %}{{site.sitename}}{% endblock %}</title>
{% if app.request.attributes.get('_route')!="home" %}
<link rel="canonical" href="{{ url(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')) }}" />
{% endif %}
{% block meta %}{% endblock %}
<link rel="icon" href="{{ asset("build/images/favicon.svg") }}" />
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body class="page">
{{ include("_flash.html.twig") }}
{% block menu %}{% include('pages/_nav.html.twig') with {menu_content : block('menu_content') ?? '' } %}{% endblock %}
{% block body %}<main>Aucun body défini !</main>{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>