{% extends 'partials/base.html.twig' %} {% block navigation %} {% endblock %} {% block content %}
{% block topbar %} {% include 'partials/topbar.html.twig' %} {% endblock %}
{% include 'partials/docmeta.html.twig' %}
{{ page.content }}

{% for p in page.children %}
{%if p.header.indexed %} {%if p.media %} {{ p.media.images|first.html }} {% endif %}
{{ p.title }}
{% endif %} {% for c in p.children.visible %} {%if c.header.indexed %} {%if c.media %} {{ c.media.images|first.crop(0, 0, 400, 300).html }} {% endif %}
{{ c.title }}
{% endif %} {% endfor %}
{% endfor %}
{% if page.taxonomy.tag|length > 0 %} {% set taglist = [] %} {% for tag in page.taxonomy.tag %} {% set taglist = taglist|merge([''~tag~'']) %} {% endfor %}
{{ taglist|join(', ') }}
{% endif %} {% if config.plugins.relatedpages.enabled and related_pages|length > 0 %} {% endif %}
{% endblock %}