diff --git a/_layouts/tags.html b/_layouts/tags.html
index 054b2a94..e6c36306 100644
--- a/_layouts/tags.html
+++ b/_layouts/tags.html
@@ -5,7 +5,8 @@ layout: archive
{{ content }}
{% assign tags_max = 0 %}
-{% for tag in site.tags %}
+{% assign sortedtags = site.tags | sort %}
+{% for tag in sortedtags %}
{% if tag[1].size > tags_max %}
{% assign tags_max = tag[1].size %}
{% endif %}
@@ -13,20 +14,22 @@ layout: archive
{% for i in (1..tags_max) reversed %}
- {% for tag in site.tags %}
+ {% for tag in sortedtags %}
{% if tag[1].size == i %}
- -
-
- {{ tag[0] }} {{ i }}
-
-
+ {% unless tag[1].size == 1 %}
+ -
+
+ {{ tag[0] }} {{ i }}
+
+
+ {% endunless %}
{% endif %}
{% endfor %}
{% endfor %}
{% for i in (1..tags_max) reversed %}
- {% for tag in site.tags %}
+ {% for tag in sortedtags %}
{% if tag[1].size == i %}
{% unless tag[1].size == 1 %}