{% extends "base.html" %} {% block language %} {% set translations = section.translations %} {% include "translation-links.html" %} {% endblock language %} {% block content %}
{{ section.content | safe }}
{% for sub in section.subsections %} {% set s = get_section(path=sub) %}

{{ s.title }}

{{ s.description | markdown | safe }}

{{ trans(key="latest", lang=lang) }}

    {% for post in s.pages %}
  • {{ post.date }}: {{ post.title }}
  • {% if loop.index == 5 %}{% break %}{% endif %} {% endfor %}
{% endfor %}
{% endblock content %}