{% extends 'partials/base.html.twig' %} {% block content %}
{% include 'partials/dashboard-filters.html.twig' %}
{% for child in page.collection %} {% if child.header.visible == true %} {% set image = child.media.images|first %} {% if image == null %} {% set image = child.media.files|first %} {% endif %}

{{child.title}}

{{child.header.shortdescription}}

{{ image.resize(500).html }}
{% endif %} {% endfor %}
{% endblock %}