X-Git-Url: http://git.dujemihanovic.xyz/?a=blobdiff_plain;f=layouts%2Frss.xml;fp=layouts%2Fposts%2Frss.xml;h=18d4ff6bccba38ce804c9fcd520ba8c407a476ef;hb=94f68171c3312c5a5fea7323ef813b84e24d09a1;hp=cf49e0c5639d3b3c08f990bf655ea2492362949e;hpb=5a435682d958b1ae74607d34c720b7f7292460e8;p=dujemihanovic.xyz.git diff --git a/layouts/posts/rss.xml b/layouts/rss.xml similarity index 66% rename from layouts/posts/rss.xml rename to layouts/rss.xml index cf49e0c..18d4ff6 100644 --- a/layouts/posts/rss.xml +++ b/layouts/rss.xml @@ -1,21 +1,9 @@ -{{- $pctx := . -}} -{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}} -{{- $pages := slice -}} -{{- if or $.IsHome $.IsSection -}} -{{- $pages = $pctx.RegularPages -}} -{{- else -}} -{{- $pages = $pctx.Pages -}} -{{- end -}} -{{- $limit := .Site.Config.Services.RSS.Limit -}} -{{- if ge $limit 1 -}} -{{- $pages = $pages | first $limit -}} -{{- end -}} {{- printf "" | safeHTML }} - {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} + {{ .Site.Title }} {{ .Permalink }} - Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} + Recent content on {{ .Site.Title }} Hugo -- gohugo.io {{ site.Language.LanguageCode }}{{ with .Site.Author.email }} {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} @@ -25,7 +13,8 @@ {{- with .OutputFormats.Get "RSS" -}} {{ printf "" .Permalink .MediaType | safeHTML }} {{- end -}} - {{ range $pages }} + {{ with .Site.GetPage "posts/" }} + {{ range .Pages | first .Site.Config.Services.RSS.Limit }} {{ .Title }} {{ .Permalink }} @@ -35,5 +24,6 @@ {{ .Content | html }} {{ end }} + {{ end }}