{% extends "base.html" %} {% block content %}
{{ section.content | safe }}
{% for sub in section.subsections %} {% set s = get_section(path=sub) %}

{{ s.title }}

{{ s.description | markdown | safe }}

Siste innlegg:

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