<!DOCTYPE html>
<html lang="{{ lang }}">
<head>
<title>{% block title %}{% endblock %}</title>
{% block header %}
{% if app.user %}
{% include '_general/header.html.twig' %}
{% else %}
{% include '_general/headerPublic.html.twig' %}
{% endif %}
{% endblock %}
</head>
<body>
{% block navigation %}
<div class="nav-container sticky-top" data-hook="nav-container">
{% block nav %}
{% if app.user %}
{% include '_general/nav.html.twig' %}
{% else %}
{% include '_general/navPublic.html.twig' %}
{% endif %}
{% endblock %}
{% block stickyHeaderContent %}
{% endblock %}
</div>
{% endblock %}
<div class="content">
<div class="container-fluid pt-3">
{% for label, messages in app.flashes %}
{% for message in messages %}
<div class="alert alert-{{ label }} alert-dismissible fade show" role="alert">
<h4 class="text-center">{{ message }}</h4>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
{% endfor %}
{% block body %}{% endblock %}
</div>
</div>
{% block footer %}
{% if app.user %}
{% include '_general/footer.html.twig' %}
{% else %}
{% include '_general/footerPublic.html.twig' %}
{% endif %}
{% endblock %}
{% block javascripts %}
{% endblock %}
</body>
</html>