{% extends "base.html" %} {% block title %}{{ article.title }} - {{ super() }}{% endblock %} {% block content %}
{% if article.category == "Lectures" %}

« {{ article.title }} » par {{ article.author }}

{% else %}

{{ article.title }}

{% if article.headline %}

{{ article.headline }}

{% endif %} {% endif %}
{{ article.content }} {% if article.tags %}

{% for tag in article.tags %} #{{ tag }}{% if not loop.last %}, {% endif %} {% endfor %} - Posté dans la catégorie {{ article.category }}

{% endif %}
{% endblock %}