removes unneeded pipe character
diff --git a/templates/author.html b/templates/author.html
index 5381df6..eb36f8f 100644
--- a/templates/author.html
+++ b/templates/author.html
@@ -1,5 +1,5 @@
 {% extends "index.html" %}
 {% block title %}{{ SITENAME }} - Author: {{ author }}{% endblock %}
 {% block header %}
-| Author: {{ author }}
+Author: {{ author }}
 {% endblock %}
diff --git a/templates/category.html b/templates/category.html
index 7c4e687..fbaae06 100644
--- a/templates/category.html
+++ b/templates/category.html
@@ -9,5 +9,5 @@
 {% endif %}
 {% endblock %}
 {% block header %}
-| Category: {{ category }}
+Category: {{ category }}
 {% endblock %}
diff --git a/templates/tag.html b/templates/tag.html
index 7855d7a..fa312e6 100644
--- a/templates/tag.html
+++ b/templates/tag.html
@@ -9,5 +9,5 @@
 {% endif %}
 {% endblock %}
 {% block header %}
-| Tag: {{ tag }}
+Tag: {{ tag }}
 {% endblock %}