{% extends "layout.html" %} {% block title %}{{ section.title }} - {{ config.title }}{% endblock %} {% block body %}

👨‍💻 {{ config.title }}

{{ section.title }}

{{ section.content | safe }} {% for sub in section.subsections %} {% set section = get_section(path=sub) %} {% for page in section.pages %} {% include "article.html" %} {% endfor %} {% endfor %} {% for page in paginator.pages %} {% include "article.html" %} {% endfor %}
{% endblock %}