From ffbe6918f8fb962ad78e6cf651773d26f801daa3 Mon Sep 17 00:00:00 2001
From: N-Upchurch
Date: Tue, 29 Aug 2023 15:31:50 -0500
Subject: [PATCH] Sort tags alphabetically
---
content/tags-list.njk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/tags-list.njk b/content/tags-list.njk
index 2ba0abb..6e55603 100644
--- a/content/tags-list.njk
+++ b/content/tags-list.njk
@@ -9,7 +9,7 @@ Click on a tag to see all posts on the topic.
-{% for tag in collections.all | getAllTags | filterTagList %}
+{% for tag in collections.all | getAllTags | filterTagList | sort(false, false, tag) %}
{% set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
- {{ tag }}
{% endfor %}