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

{{ article.title }}

{% if lectures %} Lu en {{ article.date | strftime("%B %Y") }} {% else %} {{ article.locale_date }} {% endif %}
{% if lectures %}

{% if article.isbn_cover %}

{% endif %}

Un livre de {{ article.author }}

{% if article.headline %}

{{ article.headline }}

{% endif %}
{% endif %} {{ article.content }}
{% if article.contraintes or article.tags %} {% if article.contraintes %}
+ d'infos sur ce texte (au risque de casser la magie)… {% endif %}
{% if article.contraintes %}

Contraintes

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

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

{% endif %}
{% if article.contraintes %}
{% endif %} {% endif %} {% endblock %}