{% extends "base.html" %} {% block title %}{{ super() }} : {{ article.title }}{% endblock %} {% block content %} {% include 'article_infos.html' %}
{{ article.content }}

category: {{ article.category }} {% if article.tags %} tags: {% for tag in article.tags %} {{ tag | escape }} {% endfor %} {% endif %}

{% endblock %}