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

{{ article.title }}

{% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }}
{% if article.modified %} {% endif %} {% if article.authors %}
By {% for author in article.authors %} {{ author }} {% endfor %}
{% endif %} {% if article.category != "misc" %} {% endif %}
{% if article.tags %}

From the series: {% for tag in article.tags %} {{ tag }} {% endfor %}

{% endif %}
{{ article.content }}
{% endblock %}