{% extends "index.html" %} {% block title %}{{ SITENAME }} - {{ category }}{% endblock %} {% block content %}

{{ "Actualités" if category=="news" else "Offres d'emploi" }}

{% for article in articles_page.object_list if article.category == category %}

{{ article.title }}

{{ article.summary }}

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