{% extends "base.html" %}
{% block head %}
{{ super() }}
{% for keyword in article.keywords %}
{% endfor %}
{% for description in article.description %}
{% endfor %}
{% for tag in article.tags %}
{% endfor %}
{% endblock %}
{% block header %}
{{ article.title }}
{{ article.summary }}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}