{% extends "base.html" %} {% block content %}
{% if ns.display_cool_start %}
{% if page.parent %} {{ page.parent.title }} {% else %} {{ page.title }} {% endif %}
{% endif %}
{% if page.meta["hide-toc"] %}
{{ page.content }}
{% else %}
{{ page.content }}

Contents

    {% set toc_depth = page.meta["toc-depth"] or 2 %} {% for toc_item in page.toc %}
  • {{ toc_item.title }}
  • {% if toc_depth >= 2 %} {% for sub_item in toc_item.children %}
  • {{ sub_item.title }}
  • {% if toc_depth >= 3 %} {% for sub_sub_item in sub_item.children %}
  • {{ sub_sub_item.title }}
  • {% if toc_depth >= 4 %} {% for sub_sub_sub_item in sub_sub_item.children %}
  • {{ sub_sub_sub_item.title }}
  • {% endfor %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% endif %} {% endfor %}
{% endif %}
{% if page.meta["hide-footer"] %} {% else %} {% endif %}
{% endblock %}