{% extends "base.html" %} {% block title %}{{ article.title|striptags }} - {{ SITETITLE }}{% endblock %} {% block head %} {{ super() }} {% for keyword in article.keywords %} {% endfor %} {% if article.description %} {% for description in article.description %} {% endfor %} {% elif article.summary %} {% endif %} {% for tag in article.tags %} {% endfor %} {% if article.authors %} {% for author in article.authors %} {% endfor %} {% endif %} {% if article.summary %} {% else %} {% endif %} {% endblock head %} {% block content %}

{{ article.title }}

{{ article.content }}
{% endblock content %} {% block sponsorstext %} {{ SPONSORSTEXTS[article.lang] }} {% endblock %} {% block languagefooter %} {% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }} {% endblock %}