{% extends "./page.html" %} {% block title %}{% i18n "SUMMARY" %}Table of Contents{% endi18n %} | {{ title }}{% endblock %} {% macro articles(_articles) %} {% for item in _articles %}
  • {% if item.path and item.exists %} {% if not item.external %} {% if item.introduction %}{% i18n "SUMMARY_INTRODUCTION" %}Introduction{% endi18n %}{% else %}{{ item.title }}{% endif %} {% else %} {{ item.title }} {% endif %} {% else %} {{ item.title }} {% endif %} {% if item.articles.length > 0 %}
      {{ articles(item.articles) }}
    {% endif %}
  • {% endfor %} {% endmacro %} {% block content %}

    {% i18n "SUMMARY" %}Table of Contents{% endi18n %}

      {{ articles(summary.chapters) }} {% if glossary.length > 0 %}
    1. {% i18n "GLOSSARY" %}Glossary{% endi18n %}
    2. {% endif %}
    {% endblock %}