{% extends "base.html" %} {% block title %}{{ SITENAME }}: {{article.title}}{% endblock title %} {% block nav %} Blog{{ article.category }} ›{{ article.title }} {% endblock %} {% block content %} {{ super() }}

{{ article.title }}

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

Zitiert in: {% for c in article.citedby %} {{ c.anchor }} {% endfor %}

{% endif %}
{% endblock %}