Added authors page, allows for disabling of authors, categories, and tags
diff --git a/templates/authors.html b/templates/authors.html
new file mode 100644
index 0000000..75192e2
--- /dev/null
+++ b/templates/authors.html
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+{% block title %}{{ SITENAME }} - Authors{% endblock %}
+
+{% block subheader %}
+{% include "modules/blogsubheader.html" %}
+{% endblock subheader %}
+
+{% block content %}
+<article>
+  <div class="article_text">
+    <ul>
+      {% for author, articles in authors %}
+      <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
+      {% endfor %}
+    </ul>
+  </div>
+</article>
+{% endblock %}
+