{% extends "base.html" %} {% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %} {% block content %}

{{ article.title }}

Posté{%if article.date %} le {% endif %}{% if article.author %} par {{ article.author }}{% endif %} dans «{{ article.category }}». {% if articles.tags %}
Tags : {% for tag in article.tags %}{% if loop.index > 1%}, {% endif %}{{ tag }}{% endfor %}{%endif%}

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