{% extends "base.html" %} {% block title %}{{ page.title }} - {{ config.title }}{% endblock title %} {% block description %}{% if page.description %}{{ page.description }}{% else %}{{ config.description }}{% endif %}{% endblock description %} {% block content %}

{{ page.title }}

{% if page.extra.chapter %}{{ page.extra.chapter }} | {% endif %}{% if page.date %}{% endif %}
{% if page.content is containing("") %} {% set parts = page.content | split(pat="") %} {{ parts[0] | safe }} {{ parts[1] | safe }} {% else %} {{ page.content | safe }} {% endif %}
{% endblock content %}