{% extends "./page.html" %} {% block title %}{{ "SUMMARY"|t }} | {{ title }}{% endblock %} {% macro articles(_articles) %} {% for article in _articles %}
  • {% if article.path or 1 %} {% if article.path %} {{ article.title }} {% else %} {{ article.title }} {% endif %} {% else %} {{ article.title }} {% endif %} {% if 1 %} {{ article.level }} {% endif %} {% if article.articles.length > 0 %}
      {{ articles(article.articles) }}
    {% endif %}
  • {% endfor %} {% endmacro %} {% block page %}

    {{ "SUMMARY"|t }}

      {% for part in summary.parts %} {{ articles(part.articles) }}
    1. {% endfor %} {% if glossary.path %}
    2. {{ "GLOSSARY"|t }}
    3. {% endif %}
    {% endblock %}