{% extends "base.html" %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block body_class %} {% endblock body_class %} {% block content %}
{{ article.category }}

{{ article.title }}

{% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }}

{{ article.summary }}

{{ article.content }}
{% if article.modified %} {% endif %} {% if article.authors %}
by {% for author in article.authors %} {{ author }} {% endfor %} {% if article.editor %} (edited by {{ article.editor}}) {% endif %} {% if article.translator %} | translated by {{ article.translator }} {% endif %}
{% endif %}
{% if article.related_posts %}
{% include 'taglist.html' %}
{% endif %} {% endblock %}