{%- extends 'base.html.twig' -%} {% block content %} {% autoescape false %} {% set postTemplate = currentPage.getTemplate() %} {% 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 %} {% if postTemplate %} {% filter page_html_content(postTemplate, postTemplate.type) %} {% include template_from_string(postTemplate.content) %} {% endfilter %} {% else %}

{{ page.name }}

{% filter page_html_content(page, page.type) %} {% include template_from_string(page.content) %} {% endfilter %}
{% if currentPage.showComments %}
{{ widget("disqus", {"spacing":{"top":"auto","right":"auto","bottom":"auto","left":"auto"},"params":{"url":"@dynamic"}}) }}
{% endif %}
{{ widget("blog.recent_posts") }}
{% endif %}
{% if footer %} {% endif %} {% endautoescape %} {% endblock %}