- 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
6 lines
253 B
Text
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) }}
|