{% extends "./page.html" %} {% block title %}Table of Contents | {{ title }}{% endblock %} {% macro articles(_articles) %} {% for item in _articles %} {% set externalLink = item.path|isExternalLink %}
  • {% if item.path %} {% if !externalLink %} {{ item.title }} {% else %} {{ item.title }} {% endif %} {% else %} {{ item.title }} {% endif %} {% if item.articles.length > 0 %}
      {{ articles(item.articles) }}
    {% endif %}
  • {% endfor %} {% endmacro %} {% block content %}

    Table of Contents

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