{% extends "base.html" %} {% block content %}
{{ section.content | safe }}
This page is also available in: {% for l in section.translations %} {% if l.lang != lang %} {{ trans(key=l.lang) }} {% endif %} {% endfor %}
{% 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 | reverse %}
  • {{ post.date }}: {{ post.title }}
  • {% if loop.index == 5 %}{% break %}{% endif %} {% endfor %}
{% endfor %}
{% endblock content %}