{% 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 translation %} {% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }} {% endblock %} {% block content_title %}

{{ article.title }}

{% endblock %} {% block content %} {% if category == "pressreview" %}
Publiziert von:
{{ article.publisher }}
Publiziert am:
{{ article.date.strftime('%-d. %B %Y') }}
URL:
{{ article.ext_url|urlize(128, true) }}
{% else %} {{ article.content }} {% endif %}
{% endblock %}