{% extends "website/layout.html" %} {% block title %} {% if file.path == readme.file.path %} {{ config.title|d("DEFAULT_TITLE"|t, true) }} {% else %} {{ page.title }} ยท {{ super() }} {% endif %} {% endblock %} {% block description %}{{ page.description }}{% endblock %} {% block page %} {% if file.path == readme.file.path %} {% for part in summary.parts %}

{{ (part.articles.length - 1) if (loop.index == 1) else part.articles.length }} articles {{ part.title }}

{% for article in part.articles %} {% if article.path != readme.file.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 = getArticleByPath(related) %} {% if relatedArticle %} {{ relatedArticle.title }} {% endif %} {% endfor %}
{% endif %} {% endblock %} {% endif %} {% endblock %}