{% extends 'base.html' %} {% block title %} {{ config.title }} | {{ page.title }} {% endblock %} {% block content %} {% set section = get_section(path="documentation/_index.md") %}
{% include "partials/doc/global_toc.html" %}

{{ page.title }}

{% if page.description %}

{{ page.description }}

{% endif %} {% if page.reading_time %}

{{ page.reading_time }} min

{% endif %}
{{ page.content | safe }}
{% include "partials/doc/page_toc.html" %}
{% if page.earlier or page.later or page.lighter or page.heavier %} {% include "partials/doc/pagination.html" %} {% endif %}
{% endblock %} {% block custom_js %} {% if page.toc %} {% include "partials/doc/toc_script.html" %} {% endif %} {% endblock %}