{%- extends 'base.html.twig' -%} {% block content %} {% autoescape false %} {% set header = currentPage.getSection('header') %} {% set footer = currentPage.getSection('footer') %}
{% if header %}
{% filter page_html_content(header, 'header') %} {% include template_from_string(header.content) %} {% endfilter %}
{% endif %}
{% filter page_html_content(page, page.type) %} {% include template_from_string(page.content) %} {% endfilter %}
{% if footer %} {% endif %} {% endautoescape %} {% endblock %}