{% extends 'partials/base.html.twig' %} {% block content %}
{% if not(page.header.hide_page_title) and not(grav.uri.param('hidepagetitle')) %}

{{ page.title }}

{% endif %} {{ page.content|raw }} {% set collection = page.collection() %} {% for child in collection %} {% if child.template == 'presentation' %}

{% include 'partials/presentation_iframe.html.twig' with {'src': child.route|trim('/'),'fullpagepath':true } %}

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