{% extends "base.html" %} {% block title %}{{ section.title }} - {{ config.title }}{% endblock %} {% block content %}
{% if section.path is containing("docs") %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %} {% if section.content %}
{{ section.content | safe }}
{% endif %} {% if section.pages %} {% endif %} {% if section.subsections %}
{% for subsection in section.subsections %} {% set sub = get_section(path=subsection) %}

{{ sub.title }}

{% if sub.description %}

{{ sub.description }}

{% endif %}
{% endfor %}
{% endif %}
{% else %}

{{ section.title }}

{% if section.pages %} {% endif %} {% if section.content %}
{{ section.content | safe }}
{% endif %} {% endif %}
{% endblock %}