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

{{ article.title }}
de {{ article.author }}

{% else %}

{{ article.title }}

{% endif %} {% endif %} {% if article.headline and article.category != "weeknotes" %}

{{ article.headline }}

{% endif %} {% if article.isbn_cover %}
{% 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 %}