Fix ordering of vertical bars in submenu
diff --git a/templates/modules/blogsubheader.html b/templates/modules/blogsubheader.html
index 48f6241..79b8a83 100644
--- a/templates/modules/blogsubheader.html
+++ b/templates/modules/blogsubheader.html
@@ -2,18 +2,18 @@
{% if INDEX_SAVE_AS %}
<a href="{{ SITEURL }}/{{ INDEX_SAVE_AS }}">Posts</a> |
{% else %}
-<a href="{{ SITEURL }}">Posts</a> |
+<a href="{{ SITEURL }}">Posts</a>
{% endif %}
{% if TAGS_URL %}
-<a href="{{ SITEURL }}/{{ TAGS_URL }}">Tags</a> |
+| <a href="{{ SITEURL }}/{{ TAGS_URL }}">Tags</a>
{% endif %}
{% if CATEGORIES_URL %}
-<a href="{{ SITEURL }}/{{ CATEGORIES_URL }}">Categories</a> |
+| <a href="{{ SITEURL }}/{{ CATEGORIES_URL }}">Categories</a>
{% endif %}
{% if AUTHORS_URL %}
-<a href="{{ SITEURL }}/{{ AUTHORS_URL }}">Authors</a> |
+| <a href="{{ SITEURL }}/{{ AUTHORS_URL }}">Authors</a>
{% endif %}
{% if ARCHIVES_URL %}
-<a href="{{ SITEURL }}/{{ ARCHIVES_URL }}">Archive</a>
+| <a href="{{ SITEURL }}/{{ ARCHIVES_URL }}">Archive</a>
{% endif %}
</p>