Source code of my website
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

✨ : exclude archive pages from rss feed

+2
+2
layouts/rss.xml
··· 26 26 {{- else }} 27 27 {{- $pages = $pctx.Pages }} 28 28 {{- end }} 29 + {{- /* Exclure les pages dans now/archive du flux RSS */ -}} 30 + {{- $pages = where $pages "RelPermalink" "not" "match" "^/now/archive/" -}} 29 31 {{- $limit := .Site.Config.Services.RSS.Limit }} 30 32 {{- if ge $limit 1 }} 31 33 {{- $pages = $pages | first $limit }}