{% extends base_template %} {% block content %}
{# title, breadcrumbs, table of contents #} {% block pre_content -%} {% if show_title %}

{{ title }}

{% endif %} {% if show_breadcrumbs and breadcrumbs -%} {%- endif %} {%- endblock %} {% include "lib/website/doctype/website_slideshow/templates/includes/slideshow.html" %}
{{ main_section }}
{# toc, parent, child, next sibling #} {% block post_content -%} {% 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 'lib/website/templates/includes/comments.html' %} {%- endif %} {%- endblock %}
{% endblock %}