{% regroup articles by section as grouped_articles %} {% for section, section_articles in grouped_articles %} {% if level == "deep" %}

{% if section.plural and section_articles|length >= 2 %} {{ section.plural }} {% else %} {{ section.name }} {% endif %}

{% else %}

{% if section.plural and section_articles|length >= 2 %} {{ section.plural }} {% else %} {{ section.name }} {% endif %}

{% endif %} {% for article in section_articles %} {% include "elements/article_listing.html" with article=article level=level %} {% endfor %} {% endfor %}