{# article sert aux pages ET aux articles #} {% extends "base.html" %} {% block title %}{{ SITENAME|striptags }} - {{ article.title|striptags }}{% endblock %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block content %}

{{ article.title }}

{% if article.modified %} Modifié le {% else %} Publié le {% endif %} {% if DISPLAY_AUTHORS %} {% if article.authors %} par {% for author in article.authors %} {{ author }}{% if loop.last %} {% else %},{% endif %} {% endfor %} {% endif %} {% endif %} {% if article.category %} dans la catégorie {{ article.category }} {% endif %} {% if article.tags %} avec le(s) mot(s) clé(s) {% for tag in article.tags %} {{ tag }}{% if loop.last %}.{% else %},{% endif %} {% endfor %} {% endif %}

{{ article.content }}
{% endblock %}