{% extends "base.html" %} {% block head %} {{ super() }} {% for keyword in article.keywords %} {% endfor %} {% for description in article.description %} {% endfor %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block extrahead %} {% if article.image %} {% endif %} {% endblock %} {% block title %}{{ article.title }} - {{ SITENAME }}{% endblock %} {% block content %}

{% if article.category == "Lectures" %}{{ article.title }} par {{ article.author }}{% else %}{{ article.title }}{% endif %}

{% if article.category == "Lectures" %} {% else %} {{ article.locale_date | capitalize }}, dans {{ article.category }} {% endif %}
{% if article.headline %}

{{ article.headline }}

{% endif %} {% if not article.hide_toc and article.table_of_contents %}
{{ article.table_of_contents }}
{% endif %} {% if article.category == "Notes" %} Voici quelques notes prises autour d'un sujet donné. Je ne suis souvent pas l'auteur des contenus, et les notes peuvent parfois faire un peu « fouillis ». Faites avec ;-) {% endif %}

🌟

{{ article.content }} {% if article.image and article.image_link and article.image_author and article.image_license %} L'image d'illustration utilisée est un travail de {{ article.image_author}} proposé sous license {{ article.image_license }}. Merci ! {% endif %}
{% endblock %}