{% extends "./layout.html" %} {% block title %}Table of Contents | {{ title }}{% endblock %} {% block style %} {% for resource in plugins.resources.css %} {% if resource.url %} {% else %} {% endif %} {% endfor %} {% 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 %}