{% block stylesheets %}{% endblock %} {% include 'header.html.twig' %}
{% if app.session.flashBag.has('success') %}
{{ app.flashes('success')|join }}
{% endif %} {% if app.session.flashBag.has('message') %}
{{ app.flashes('message')|join }}
{% endif %} {% if app.session.flashBag.has('info') %}
{{ app.flashes('info')|join }}
{% endif %} {% if app.session.flashBag.has('err') %}
{{ app.flashes('err')|join }}
{% endif %} {% block body %}{% endblock %}
{% include 'footer.html.twig' %} {% block javascripts %}{% endblock %}