{% extends "base.html" %} {% block content_title %}{% endblock %} {% block js %} {% endblock %} {% block content %} {% if articles %}
{% if category and category.name == 'notes' %}

Voici quelques notes, probablement prises à la va-vite dans un train alors que je visualisais un documentaire / écoutait une émission ou lisait un texte. Ces notes sont susceptibles d'évoluer, prenez les tel quel!

{% else %}
filter by language: english french
{% endif %}
    {% set current_category = None %} {% for article in articles_page.object_list %} {% if article.category.name != 'notes' or category and category.name == 'notes' %}
  1. {% if article.category.name != current_category %} {{ article.category }} {% set current_category = article.category.name %} {% endif %}

    {% if article.category == 'notes' %} Notes: {% endif %} {{ article.title }}

  2. {% endif %} {% endfor %}
{% else %}

Pages

{% for page in PAGES %}
  • {{ page.title }}
  • {% endfor %}
    {% endif %} {% endblock content %}