diff --git a/templates/article_stub.html b/templates/article_stub.html
index 397282fdc6f0f73ac4aa721ca1cbd0a343d4caad..5e88ac587b3c35a2323ec0164c6aa5edfe9b121e 100644
--- a/templates/article_stub.html
+++ b/templates/article_stub.html
@@ -19,7 +19,7 @@
                         {%- else -%}
                         <a href="{{ SITEURL }}/{{ article.url }}">posted at {{ article.date.strftime("%l:%M %P") }}</a>
                         {%- if article.category.name != "Uncategorized" -%}
-                        &middot; in <a href="{{ SITEURL }}/{{ article.category.url }}" rel="tag">{{ article.category }}</a>
+                        &nbsp;&middot;&nbsp;<a href="{{ SITEURL }}/{{ article.category.url }}" rel="tag">{{ article.category }}</a>
                         {%- endif %}
                         {% if article.tags %}
 
diff --git a/templates/author.html b/templates/author.html
new file mode 100644
index 0000000000000000000000000000000000000000..8372941b270a9156272508602b0e58dc28d82238
--- /dev/null
+++ b/templates/author.html
@@ -0,0 +1,7 @@
+{% extends "index.html" %}
+
+{% block title %}{{ SITENAME }} &middot; Articles by {{ author }}{% endblock %}
+{% block ephemeral_nav %}
+
+                {{ ephemeral_nav_link(author, output_file, True) }}
+{%- endblock %}