{% extends "base.html" %}
{% block extra_head %}
{% endblock extra_head %}
{% block content %}
- 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 %}
{% for numero in numeros %}
{% endfor %}
{% endblock content %}