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

{{ article.title }}
par {{ article.author }}

{% if article.headline %}

{{ article.headline }}

{% endif %}
{% if article.category == "Lectures" and article.isbn_cover %}
{% endif %}
{% else %}

{{ article.title }}

{% endif %}

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

{{ 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 %}