{{- /* Deprecate site.Author.email in favor of site.Params.author.email */}} {{- $authorEmail := "" }} {{- with site.Params.author }} {{- if reflect.IsMap . }} {{- with .email }} {{- $authorEmail = . }} {{- end }} {{- end }} {{- else }} {{- with site.Author.email }} {{- $authorEmail = . }} {{- warnf "The author key in site configuration is deprecated. Use params.author.email instead." }} {{- end }} {{- end }} {{- /* Deprecate site.Author.name in favor of site.Params.author.name */}} {{- $authorName := "" }} {{- with site.Params.author }} {{- if reflect.IsMap . }} {{- with .name }} {{- $authorName = . }} {{- end }} {{- else }} {{- $authorName = . }} {{- end }} {{- else }} {{- with site.Author.name }} {{- $authorName = . }} {{- warnf "The author key in site configuration is deprecated. Use params.author.name instead." }} {{- end }} {{- end }} {{- $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 }} Recent content {{ if ne .Title site.Title }}{{ with .Title }}in {{ . }} {{ end }}{{ end }}on {{ site.Title }} {{ .Permalink }} Hugo {{ site.Language.LanguageCode }} {{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }} {{ with $authorName }}{{ . }}{{ end }} {{ with $authorEmail }}{{ . }}{{ end }} {{ with site.Copyright }}{{ . }}{{ end }} {{- range $pages }} {{- if and (ne .Layout `search`) (ne .Layout `archives`) }} {{ .Title }} {{ .Permalink }} {{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }} {{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" | safeHTML }} {{ with .Description | html }}{{ . }}{{ else }}{{ .Summary | html }}{{ end -}} {{- if site.Params.ShowFullTextinRSS }} {{ (printf "" .Content) | safeHTML }} {{- end }} {{- end }} {{- end }}