{% extends "base.html" %} {% block extra_head %} {% endblock extra_head %} {% block content %} {% for date, grouped_articles in articles|groupby("date")|reverse %}

# {{ date.strftime('%d %B %Y') }}

{% for article in grouped_articles %}

{{ article.title_f }}

Numéro : {{ article.numero.name }}

{{ article.subtitle_f|markdown }} {% if article.authors %} {% endif %}
{% endfor %}
{% endfor %}
Mots-clefs :
{% for slug, keyword in keywords.items() %} {% if loop.index < 20 %} #{{ keyword.name }}({{ keyword.articles|length }}){%- if not loop.last -%}, {% endif %} {% endif %} {% endfor %}{% if keywords|length >= 20 %}…
Voir plus de mot-clés {% for slug, keyword in keywords.items() %} {% if loop.index >= 20 %} #{{ keyword.name }}({{ keyword.articles|length }}){%- if not loop.last -%}, {% endif %} {% endif %} {% endfor %}
{% endif %}
Auteur·ices :
{% for slug, author in authors.items() %} {% if loop.index < 20 %} #{{ author }}({{ author.articles|length }}){%- if not loop.last -%}, {% endif %} {% endif %} {% endfor %}{% if authors|length >= 20 %}…
Voir plus d’auteur·ices {% for slug, author in authors.items() %} {% if loop.index >= 20 %} #{{ author }}({{ author.articles|length }}){%- if not loop.last -%}, {% endif %} {% endif %} {% endfor %}
{% endif %}
{% endblock content %}