{% extends 'partials/base.html.twig' %} {% set collection = page.collection() %} {% set gallery = page.find(header_var('blog_url')|defined(theme_var('blog-page'))) %} {% set show_breadcrumbs = header_var('show_breadcrumbs', [page, gallery])|defined(true) %} {% block content %} {{ page.content }} {% if show_breadcrumbs and config.plugins.breadcrumbs.enabled %} {% include 'partials/breadcrumbs.html.twig' %} {% endif %} {% for child in collection %} {% if loop.first %}
{% else %}
{% endif %}

{{ child.title }}

{{ child.content }}
{% for media_item in child.media.images[:6] %}
{{ media_item.quality(25).html }} {% if loop.last %}

Mehr anzeigen

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