{% extends "base.html" %} {% block content %}

{%- if page.title -%}{{ page.title | safe }} {%- elif section.title -%}{{ section.title | safe }} {%- endif -%}

{% if page.extras.show_date %}
{{ page.date | date(format="%e %b %Y") }}
{% endif %} {%- if post.description -%}
{{ page.description }}
{%- endif -%}
{% if page.toc and page.extra.show_toc %}
Contents
    {% for h1 in page.toc %}
  • {{ h1.title }} {% if h1.children %}
      {% for h2 in h1.children %}
    • {{ h2.title }}
    • {% if h2.children %} {% endif %} {% endfor %}
    {% endif %}
  • {% endfor %}
{% endif %} {%- if page.content -%} {{ page.content | safe }} {%- elif secion.content -%} {{ section.content | safe }} {%- endif -%}
{% if page.higher %}← {{page.higher.title}}{% endif %}
{% if page.lower %}{{page.lower.title}} →{% endif %}
{% include "shares.html" %} {% endblock %}