{# Default section.html template #} {% extends "base.html" %} {% block seo %} {{ super() }} {% set title_addition = "" %} {% if section.title and config.title %} {% set title = section.title %} {% set title_addition = title_separator ~ config.title %} {% elif section.title %} {% set title = section.title %} {% else %} {% set title = config.title %} {% endif %} {% if section.description %} {% set description = section.description %} {% else %} {% set description = config.description %} {% endif %} {{ macros_head::seo(title=title, title_addition=title_addition, description=description) }} {% endblock seo %} {% block body %} {% if section.extra.class %} {% set page_class = section.extra.class %} {% else %} {% set page_class = "page list" %} {% endif %} {% endblock body %} {% block content %}
{{ section.content | safe }}
{% endblock content %}