{% extends "base.html" %} {% block title %}Catégorie "{{ category }}" - {{ SITENAME }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Catégorie « {{ category }} »

{% for article in articles_page.object_list %}

{{ article.title }}

Publié le {{ article.date|strftime('%d/%m/%Y') }} par {{ article.author }}

{{ article.summary }}


{% endfor %} {% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %} {% endblock %}