{% extends 'partials/base.html.twig' %} {% set collection = page.collection() %} {% block content %} {% if page.content %} {{ page.content }}
{% endif %} {% for child in collection %} {% if child.template == 'info' %}
{% set text_class = 'col-12' %} {% if child.media.images|first %} {% set text_class = 'col-12 col-md-6' %}
{% endif %}
{{ child.content }}
{% else %} {{ child.title }}

{{ child.summary }}

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