From 05a972cc6ede03bbec97750e3dd3ea6f4b0b6217 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Tue, 4 Jun 2024 21:44:44 -0700 Subject: [PATCH] Order page group pages by publish date desc --- layouts/partials/paige/pages.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/paige/pages.html b/layouts/partials/paige/pages.html index b29b9f87..6e24c8ea 100644 --- a/layouts/partials/paige/pages.html +++ b/layouts/partials/paige/pages.html @@ -73,7 +73,7 @@

{{ .Key }}

{{ end }} - {{ range .Pages.ByWeight }} + {{ range .Pages.ByPublishDate.Reverse }} {{ partial "paige/page.html" . }} {{ end }} {{ end }}