{% extends 'partials/base.html.twig' %} {% set collection = page.collection() %} {% set image = page.media.images|first %} {% block body %}
{% if image %} {{image.html}} {% endif %}

{{page.title}}

{{content}} {% for item in page.collection %}

{{item.title}}

{{item.content}}
{% endfor %}
{% if show_sidebar %} {% block sidebar %} {% include 'partials/sidebar.html.twig' %} {% endblock %} {% endif %}
{% endblock %}