{% extends "@Contao/content_element/_base.html.twig" %} {% use "@Contao/component/_figure.html.twig" %} {% block content %}
{% if name %}

{{ name }}

{% endif %} {% if items.files or items.pdfs %} {% if items.files is defined %}
{% for item in items.files %} {% with {figure: item} %}{{ block('figure_component') }}{% endwith %} {% endfor %}
{% endif %} {% if items.pdfs %}

PDF

{% for item in items.pdfs %} {% with {figure: item} %}{{ block('figure_component') }}{% endwith %} {% endfor %}
{% endif %} {% else %}

{{ no_files }}

{% endif %}
{% endblock %}