<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" type="image/x-icon" href="{{ asset('assets/images/logo-rond.png') }}">
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/shared-style.css') }}"/>
{% block stylesheets_custom %}{% endblock %}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('shared-scripts') }}
{% block javascript_custom %}{% endblock %}
{% endblock %}
</head>
<body class="{% block bodyClass %}{% endblock %}">
{% block navBar %}{% endblock %}
{% block sideNav %}{% endblock %}
{% block body %}{% endblock %}
{% block footer %}{% endblock %}
{% include 'partials/gdpr/gdpr.html.twig' %}
</body>
</html>