diff --git a/theme/templates/article.html b/theme/templates/article.html
index 7f4a68d..3767fc4 100644
--- a/theme/templates/article.html
+++ b/theme/templates/article.html
@@ -1,64 +1,55 @@
-{% extends "base.html" %}
-
-{% block title %}
-{{ article.title }} - {{ SITENAME }}
-{% endblock %}
-
-{% block metadesc %}
-{% if article.summary %}
-{{ article.summary|e }}
-{% else %}
-An Article in {{ SITETAG }}: {{ article.title }}
-{% endif %}
-{% endblock %}
-
-{% block content_header %}
+{% extends "base.html" %} {% block title %} {{ article.title }} - {{ SITENAME }}
+{% endblock %} {% block metadesc %} {% if article.summary %} {{
+article.summary|e }} {% else %} An Article in {{ SITETAG }}: {{ article.title }}
+{% endif %} {% endblock %} {% block content_header %}
-{% endblock content_header %}
-
-{% block content_body %}
+{% endblock content_header %} {% block content_body %}
{% if article.featured_image is defined %}
- {% endif %}
- {% if article.klappentext is defined %}
+ {% endif %} {% if article.klappentext is defined %}
Klappentext
{{ article.klappentext }}
- {% endif %}
- {% if article.content | length is not eq(0) %}
+ {% endif %} {% if article.content | length is not eq(0) %}
{{ article.content }}
{% endif %}
-
+
Details
- {% if article.reihe is defined %}
+ {% if article.reihe is defined %}
- aus der Reihe {{ article.reihe }}
- {% endif %}
- {% if article.tags is defined %}
- - Schlagworte: {% for tag in article.tags %}{{ tag }}, {% endfor %}
- {% endif %}
- {% if article.isbn is defined %}
+ {% endif %} {% if article.tags is defined %}
+ -
+ Schlagworte: {% for tag in article.tags %}{{ tag }}, {% endfor %}
+
+ {% endif %} {% if article.isbn is defined %}
- ISBN: {{ article.isbn }}
- {% endif %}
- {% if article.verlag is defined %}
+ {% endif %} {% if article.verlag is defined %}
- erschienen bei: {{ article.verlag }}
- {% endif %}
+ {% endif %}
-