{% block title %} {{ title }} {% endblock %} {% block header %}{% if show_title %}

{{ title }}

{% endif %}{% endblock %} {% block breadcrumbs %}{% include "templates/includes/breadcrumbs.html" %}{% endblock %} {% block content %}
{# title, breadcrumbs, table of contents #} {% include "templates/includes/slideshow.html" %}
{{ main_section or "" }}
{# toc, parent, child, next sibling #} {% if show_toc and toc_list -%}

Contents

    {% for t in toc_list -%}
  1. {{ t.title }}
  2. {%- endfor %}
{%- endif %} {% if links and links.get("parent") -%}
{{ links.parent.title }} {% if links.get("next") -%} {{ links.next.title }} {%- endif -%} {% if links.get("child") -%} {{ links.child.title }} {%- endif -%}
{%- endif %} {% if enable_comments -%}

Discuss

{% include 'templates/includes/comments.html' %} {%- endif %}
{% endblock %} {% block sidebar %}{% include "templates/includes/sidebar.html" %}{% endblock %} {% block style %}{{ style }}{% endblock %} {% block script %}{{ script }}{% endblock %}