{% extends "./page.html" %} {% block title %}{{ "SUMMARY"|t }}{% endblock %} {% macro articles(_articles) %} {% for article in _articles %}
  • {% if article.path or article.url %} {% 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 %} {% if part.title %}
    1. {{ part.title }}

    2. {% endif %} {{ articles(part.articles) }} {% if not loop.last %}
    3. {% endif %} {% endfor %} {% if glossary.path %}
    4. {{ "GLOSSARY"|t }}
    5. {% endif %}
    {% endblock %}