{% extends "base.html" %} {% block language %} {% set translations = section.translations %} {% include "translation-links.html" %} {% endblock language %} {% block content %}

{{ section.title }}

{{ section.description }}
{% for post in section.pages %}
{% include "posts/header.html" %}
{% if post.summary %} {{ post.summary | safe }} {% else %} {{ post.content | safe }} {% endif %}
{% endfor %}
{% endblock content %}