{% extends "./page.html" %} {% block title %}{{ __("SUMMARY") }} | {{ title }}{% endblock %} {% macro articles(_articles) %} {% for item in _articles %}
  • {% if item.path and item.exists %} {% if not item.external %} {{ item.title }} {% else %} {{ item.title }} {% endif %} {% else %} {{ item.title }} {% endif %} {% if options.generator != "mobi" %} {{ item.level }} {% endif %} {% if item.articles.length > 0 %}
      {{ articles(item.articles) }}
    {% endif %}
  • {% endfor %} {% endmacro %} {% block page %}

    {{ __("SUMMARY") }}

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