{{/* 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 }} {{- /* 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 -}} {{ "" | safeHTML }} {{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `(?m)index.gmi$` "" }} {{ .Site.Title }} {{ .Date.UTC.Format "2006-01-02T15:04:05Z" | safeHTML }} {{- with $authorName }} {{ . }} {{- with $authorEmail }} {{ . }}{{ end }} {{ end }} Hugo -- gohugo.io {{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }} {{ .Site.Params.Description }}{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }} {{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `(?m)index.gmi$` "" | safeURL }} {{ .Title }} {{ .Date.UTC.Format "2006-01-02T15:04:05Z" | safeHTML }} {{ end }}