{% extends "@Contao/content_element/_base.html.twig" %} {% block content %} {% if hide == false %} {% use "@Contao/component/_figure.html.twig" %}
{% if headline_value %} <{{ headline_unit }}>{{ headline_value }}> {% endif %} {% if title %}

{{ title }}

{% endif %} {% for group in items %} {% if group.label is defined %}

{{ group.label }}

{% endif %} {% if group.folders is defined and group.folders|length > 0 %}
{% for item in group.folders %}
{% with {figure: item.figure} %}{{ block('figure_component') }}{% endwith %}
{% endfor %}
{% endif %} {% if group.images is defined and group.images|length > 0 %}
{% for item in group.images %}
{% with {figure: item.figure} %}{{ block('figure_component') }}{% endwith %}
{% endfor %}
{% endif %} {% if group.pdfs is defined and group.pdfs|length > 0 %}
{% for item in group.pdfs %}
{% with {figure: item.figure} %}{{ block('figure_component') }}{% endwith %}
{% endfor %}
{% endif %} {% if group.videos is defined %}
{% for item in group.videos %}
{% with {figure: item.figure} %}{{ block('figure_component') }}{% endwith %}
{% endfor %}
{% endif %} {% endfor %} {% if back %}

{{ backTitle }}

{% endif %}
{% endif %} {% endblock %}