{% extends "base.html" %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% if article.tags or article.category or article.keywords %} {% endif %} {% from 'syndication.html' import syndication with context %} {{ syndication(article) }} {% 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 %}
{{ article.content }}
{% endblock %}