<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>{% block title %} {{ sitewebFullname }}!{% endblock %}</title>
<meta name="msapplication-TileImage" content="{{ asset("uploads/logos/favicon.png") }}">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="{{ asset("uploads/logos/favicon.png") }}" type="image/x-icon"/>
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
<!-- NAVBAR -->
{% include 'front/navbar.html.twig' %}
{% block body %}
{% endblock %}
{% include 'front/footer.html.twig' %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>