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

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

{% if article.headline %}

{{ article.headline }}

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