diff --git a/theme/templates/article.html b/theme/templates/article.html
index 4307cff..0075309 100644
--- a/theme/templates/article.html
+++ b/theme/templates/article.html
@@ -1,11 +1,7 @@
{% 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 title %}{{ article.title }} – {{ SITENAME }}{% endblock %}
+{% block metadesc %}{% if article.summary %}{{ article.summary | e }}{% else %}An Article in {{ SITETAG }}: {{ article.title }}{% endif %}{% endblock %}
{% block content_all %}
diff --git a/theme/templates/base.html b/theme/templates/base.html
index 06acbfa..7eacaac 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -3,7 +3,7 @@
-
+
{% include "includes/favicon.html" %}
diff --git a/theme/templates/includes/favicon.html b/theme/templates/includes/favicon.html
index 9231b43..0d23d76 100644
--- a/theme/templates/includes/favicon.html
+++ b/theme/templates/includes/favicon.html
@@ -1,23 +1,23 @@
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/theme/templates/page.html b/theme/templates/page.html
index d2ebd61..e768c4b 100644
--- a/theme/templates/page.html
+++ b/theme/templates/page.html
@@ -1,8 +1,6 @@
{% extends "base.html" %}
-{% block title %}
- {{ page.title }} – {{ SITENAME }}
-{% endblock %}
+{% block title %}{{ page.title }} – {{ SITENAME }}{% endblock %}
{% block metadesc %}
{% if page.summary %}{{ page.summary|e }}{% else %}{{ super() }}{% endif %}
{% endblock %}
diff --git a/theme/templates/tag.html b/theme/templates/tag.html
index c54f162..9dd4ba7 100644
--- a/theme/templates/tag.html
+++ b/theme/templates/tag.html
@@ -1,11 +1,7 @@
{% extends "base.html" %}
-{% block title %}
- Schlagwort: {{ tag }} - {{ SITENAME }}
-{% endblock %}
-{% block metadesc %}
-Alle Einträge zum Schlagwort '{{ tag }}'
-{% endblock %}
+{% block title %}Schlagwort: {{ tag }} – {{ SITENAME }}{% endblock %}
+{% block metadesc %}Alle Einträge zum Schlagwort '{{ tag }}'{% endblock %}
{% block content_all %}
{% block content_header %}