<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
<style>
.accordion-button{
display: none !important;
}
.collapse:not(.show){
display: block !important;
}
a{
text-decoration: none;
}
</style>
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
<nav class="navbar navbar-dark ps-0 p-3 bg-dark justify-content-between">
<a class="navbar-brand ms-4" href="/"><i class="fa-solid fa-gears me-3 fa-xl"></i><h4 class="d-inline">Configuration des flux Ypareo - Moodle</h4></a>
{% if app.user %}
<div class="nav-item me-4">
<a href="{{path('app_logout')}}" class="text-white"><i class="fa-solid fa-arrow-right-from-bracket p-2"></i>Déconnexion</a>
</div>
{% endif %}
</nav>
{% block body %}{% endblock %}
</body>
</html>
{# <div class="d-flex bg-dark p-2 justify-content-between">
</div> #}