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

Notes de lecture

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

{% else %}

{{ article.title }}

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

{% for tag in article.tags %} #{{ tag }}{% if not loop.last %}, {% endif %} {% endfor %} - Posted in the {{ article.category }} category

{% endif %}
{% endblock %}