Sort feeds descending

This commit is contained in:
Will Faught
2025-02-11 15:40:11 -08:00
parent 2cae3f6fd6
commit 85fe588479
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
{{ $limit := site.Config.Services.RSS.Limit }}
{{ $logo := $page.Param "paige.feeds.atom.logo" | absLangURL }}
{{ $rights := site.Copyright | markdownify }}
{{ $subpages := $page.RegularPagesRecursive.ByPublishDate.Reverse }}
{{ $subpages := $page.RegularPagesRecursive.ByPublishDate }}
{{ $subtitle := $page.Description | markdownify }}
{{ $lastmod := site.Lastmod.Format $date }}

View File

@@ -8,7 +8,7 @@
{{ $limit := site.Config.Services.RSS.Limit }}
{{ $link := ($page.AlternativeOutputFormats.Get "html").Permalink }}
{{ $master := $page.Param "paige.feeds.rss.web_master" }}
{{ $subpages := $page.RegularPagesRecursive.ByPublishDate.Reverse }}
{{ $subpages := $page.RegularPagesRecursive.ByPublishDate }}
{{ $lastmod := site.Lastmod.Format $date }}