diff --git a/layouts/partials/simple_posts_list.html b/layouts/partials/simple_posts_list.html
index e635c15..5724927 100644
--- a/layouts/partials/simple_posts_list.html
+++ b/layouts/partials/simple_posts_list.html
@@ -7,7 +7,20 @@
{{ if and (eq $section "Tags") (ne $section $title) }}Tag: #{{ end }}{{ $title }}
- {{ range .Pages }}
- - {{ .Date.Format "2006-01-02" }} {{ .Title }}
+ {{ if and (eq $section "Tags") (eq $section $title) }}
+ {{/* if we're in the Tags section, sort alphabetically and don't show the date */}}
+ {{ range (sort .Pages "Title") }}
+ -
+ #{{ .Title }}
+
+ {{ end }}
+ {{ else }}
+ {{ range .Pages }}
+ -
+
+ {{ .Date.Format "2006-01-02" }}
+ {{ .Title }}
+
+ {{ end }}
{{ end }}