{% extends "base.html" %} {% block content %}

{{ section.title }}

{{ section.description }}
{% for post in section.pages | reverse %}

{{ post.title }}

{% if post.summary %} {{ post.summary | safe }} {% else %} {{ post.content | safe }} {% endif %}
{% endfor %}
{% endblock content %}