links
diff --git a/pelican/themes/simple/templates/authors.html b/pelican/themes/simple/templates/authors.html
index 4914904f..9aee5db4 100644
--- a/pelican/themes/simple/templates/authors.html
+++ b/pelican/themes/simple/templates/authors.html
@@ -4,9 +4,8 @@
{% block content %}
Authors on {{ SITENAME }}
-
- {%- for author, articles in authors|sort %}
+ {% for author, articles in authors|sort %}
- {{ author }} ({{ articles|count }})
{% endfor %}
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 %}
diff --git a/pelican/themes/simple/templates/tags.html b/pelican/themes/simple/templates/tags.html
index b5d1482d..b90b0ac3 100644
--- a/pelican/themes/simple/templates/tags.html
+++ b/pelican/themes/simple/templates/tags.html
@@ -4,7 +4,9 @@
{% block content %}
Tags for {{ SITENAME }}
- {%- for tag, articles in tags|sort %}
+
+ {% for tag, articles in tags|sort %}
- {{ tag }} ({{ articles|count }})
{% endfor %}
+
{% endblock %}