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

7 lines
272 B
Text

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