{% extends 'AppBundle::layout.html.twig' %}
{% block header %}
{% if page.header %}
{% include "@App/components/header.html.twig" %}
{% endif %}
{% endblock %}
{% block title %}{% endblock %}
{% block body %}
{% block banner %}
{% if page.banner %}
{% include '@App/ContentBlock/banner.html.twig' %}
{% endif %}
{% endblock %}
{% if page.isUnitsFilter %}
{% include '@App/components/units_filter.html.twig' %}
{% endif %}
{% if page.breadcrumbs %}
{% include '@App/components/breadcrumbs.html.twig' %}
{% endif %}
{% include '@App/components/flash.html.twig' %}
{% block content %}{% endblock %}
{% for content in page.contentBlocks %}
{{ render_content_block(content.instance, page) }}
{% endfor %}
{% if page.isNewsletter %}
{% include '@App/components/newsletter_box.html.twig' %}
{% endif %}
{% endblock %}
{% block footer %}
{% if page.footer %}
{% include "@App/components/footer.html.twig" %}
{% endif %}
{% endblock %}