{% extends "website/layout.html" %} {% block title %}{{ page.title }} ยท {{ super() }}{% endblock %} {% block description %}{{ page.description }}{% endblock %} {% block page %} {% if page.level == "0" %} {% for part in summary.parts %}

{{ part.articles.length }} articles {{ part.title }}

{% for article in part.articles %} {% if article.path != readme.path %} {{ article.title }} {% endif %} {% endfor %}
{% endfor %} {% else %}
{{ page.content|safe }}
{% block faq_page_related %} {% if page.related.length > 0 %}

{{ "FAQ_RELATED_ARTICLES"|t }}

{% for related in page.related %} {% set relatedArticle = related|getArticleByPath %} {{ relatedArticle.title }} {% endfor %}
{% endif %} {% endblock %} {% endif %} {% endblock %}