Sort authors and categories
diff --git a/templates/authors.html b/templates/authors.html
index 31141ae..741fc17 100644
--- a/templates/authors.html
+++ b/templates/authors.html
@@ -9,7 +9,7 @@
 <article>
   <div class="article_text">
     <ul>
-      {% for author, articles in authors %}
+      {% for author, articles in authors|sort %}
       <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
       {% endfor %}
     </ul>