<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" href="{{ asset('build/images/favicon.png') }}"/>
<title id="turbo-title">
{% block title %}{% endblock %}
</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{{ encore_entry_link_tags('fontawesome') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body {{ stimulus_controller('turbo') }} >
<turbo-frame class="min-vh-100 d-flex flex-column" id="body" data-turbo-action="advance">
{% include 'include/_navbar.html.twig' %}
{{ component('toaster') }}
{{ apy_breadcrumb_trail_render() }}
<main class="mb-5">
{% block body %}{% endblock %}
</main>
{% include 'include/_footer.html.twig' %}
</turbo-frame>
{{ component('player') }}
</body>
</html>