{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block title %}{{ article.title }} | {{ SITENAME }}{% endblock %} {% block head %} {{ super() }} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(article) %} {{ translations.entry_hreflang(article) }} {% endif %} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block content %}
{% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }} {{ article.title }}
Erstellt:  {% if article.modified %} Aktualisiert:  {% endif %} {% if article.authors %} Von: 
{% for author in article.authors %} {{ author }} {% endfor %}
{% endif %} {% if article.category %} Kategorie:  {% endif %} {% if article.tags %} Tags: 
{% for tag in article.tags %} {{ tag }} {% endfor %}
{% endif %}
{{ article.content }}
{% endblock %}