hugo-theme-feeds/layouts/_default/section.atom
Eryn Wells 32762afb55 Fix several issues with the Atom feeds
- Make sure Author info populates correctly
- Sort posts by Date
- Remove un-dated posts from the feed
- Remove Draft posts from the feed if the site isn't in Development mode
2024-11-04 15:46:15 -08:00

6 lines
272 B
Text

{{- $pages := .RegularPagesRecursive.ByDate.Reverse -}}
{{- $limit := int $.Site.Config.Services.RSS.Limit -}}
{{- if ge $limit 1 -}}
{{- $pages = $pages | first $limit -}}
{{- end -}}
{{ partial "feeds/atom/base.xml" (dict "context" . "pages" $pages "limit" $limit) }}