{% if block('javascripts_top') is not defined %}{% block javascripts_top %}{% endblock %}{% endif %}
{% if block('stylesheets') is not defined %}{% block stylesheets %}{% endblock %}{% endif %}
{% if block('javascripts_bottom') is not defined %}{% block javascripts_bottom %}{% endblock %}{% endif %}
{% if block('after_body') is not defined %}{% block after_body %}{% endblock %}{% endif %}
{% if block('before_body') is not defined %}{% block before_body %}{% endblock %}{% endif %}
{% include '_page/_core/_header.html.twig' with {
javascripts_top: block('javascripts_top'),
stylesheets: block('stylesheets'),
stylesheetsUrl: '_page/_guest/_styles.html.twig',
after_body: block('after_body'),
before_body: block('before_body'),
} %}
<main class="container-fluid h-100">
{#{% include "_page/_core/_messages.html.twig" %}#}
{% block body %}{% endblock %}
</main>
{% include "_page/_content/_logoutModal.html.twig" %}