Added authors page, allows for disabling of authors, categories, and tags
diff --git a/templates/modules/blogsubheader.html b/templates/modules/blogsubheader.html
index 2c4b18e..48f6241 100644
--- a/templates/modules/blogsubheader.html
+++ b/templates/modules/blogsubheader.html
@@ -4,7 +4,16 @@
 {% else %}
 <a href="{{ SITEURL }}">Posts</a> &#124;
 {% endif %}
+{% if TAGS_URL %}
 <a href="{{ SITEURL }}/{{ TAGS_URL }}">Tags</a> &#124;
+{% endif %}
+{% if CATEGORIES_URL %}
 <a href="{{ SITEURL }}/{{ CATEGORIES_URL }}">Categories</a> &#124;
+{% endif %}
+{% if AUTHORS_URL %}
+<a href="{{ SITEURL }}/{{ AUTHORS_URL }}">Authors</a> &#124;
+{% endif %}
+{% if ARCHIVES_URL %}
 <a href="{{ SITEURL }}/{{ ARCHIVES_URL }}">Archive</a>
+{% endif %}
 </p>