{% extends "base.html.twig" %}
{% block hero %}
{% if content.cover_hp is defined or content.cover_video_hp is defined %}
{{ include ('pages/blocks/hero-hp-section.html.twig', {
content : content
}) }}
{% endif %}
{% if content.cover is defined %}
{{ include ('pages/blocks/hero-section.html.twig', {
content : content
}) }}
{% endif %}
{% if content.coverVideo is defined %}
{{ include ('pages/blocks/hero-video-section.html.twig', {
content : content
}) }}
{% endif %}
{% endblock %}
{% block content %}
{% for item in content.blocks %}
{{ include('pages/blocks/' ~ item.type ~ '.html.twig', {
content : item,
index : loop.index,
global : content
}) }}
{% endfor %}
{% endblock %}