hugo-theme-feeds/layouts/_default/section.atom

7 lines
272 B
Text
Raw Normal View History

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