{% extends "base.html" %} {% block title %} {% if page.ancestors %} {% set ancestor = get_section(path=page.ancestors | last) %} {% if ancestor.extra %} {{ config.title }} | {{ page.date }} - {{ page.title }} ({{ ancestor.title }}) {% else %} {{ config.title }} | {{ page.title }} {% endif %} {% endif %} {% endblock title %} {% block subtitle %} {% if page.ancestors %} {% set ancestor = get_section(path=page.ancestors | last) %} {% if ancestor.extra %}

{{ ancestor.extra.start }} - {{ ancestor.extra.end }}: {{ ancestor.title }}

{% else %}

{{ page.title }}

{% endif %} {% endif %} {% endblock subtitle %} {% block content %} {% if page.date %}

{{ page.title }} ({{ page.date }})

{% endif %} {{ page.content | safe }} {% if page.date %} {% include "comments.html" %} {% endif %} {% endblock content %}