hugo-theme-feeds/layouts/index.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
253 B
Text

{{- $pages := .Site.RegularPages.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) }}