links
diff --git a/pelican/themes/simple/templates/categories.html b/pelican/themes/simple/templates/categories.html
index ec138480..7999de43 100644
--- a/pelican/themes/simple/templates/categories.html
+++ b/pelican/themes/simple/templates/categories.html
@@ -3,9 +3,10 @@
{% block title %}{{ SITENAME }} - Categories{% endblock %}
{% block content %}
-
-{% for category, articles in categories|sort %}
- - {{ category }} ({{ articles|count }})
-{% endfor %}
-
+
Categories on {{ SITENAME }}
+
+ {% for category, articles in categories|sort %}
+ - {{ category }} ({{ articles|count }})
+ {% endfor %}
+
{% endblock %}