mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2026-05-21 19:09:02 +00:00
[PATCH] tpl/tplimpl: Fix deprecation logic in RSS template
cherry-pick from https://github.com/gohugoio/hugo/commit/23fcfb7f741a417f53a8ef4997bb68e64631df01
This commit is contained in:
committed by
Aditya Telange
parent
00488d0146
commit
ff7443b17f
@@ -1,7 +1,11 @@
|
|||||||
{{- /* Deprecate site.Author.email in favor of site.Params.author.email */}}
|
{{- /* Deprecate site.Author.email in favor of site.Params.author.email */}}
|
||||||
{{- $authorEmail := "" }}
|
{{- $authorEmail := "" }}
|
||||||
{{- with site.Params.author.email }}
|
{{- with site.Params.author }}
|
||||||
{{- $authorEmail = . }}
|
{{- if reflect.IsMap . }}
|
||||||
|
{{- with .email }}
|
||||||
|
{{- $authorEmail = . }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
{{- with site.Author.email }}
|
{{- with site.Author.email }}
|
||||||
{{- $authorEmail = . }}
|
{{- $authorEmail = . }}
|
||||||
@@ -11,8 +15,14 @@
|
|||||||
|
|
||||||
{{- /* Deprecate site.Author.name in favor of site.Params.author.name */}}
|
{{- /* Deprecate site.Author.name in favor of site.Params.author.name */}}
|
||||||
{{- $authorName := "" }}
|
{{- $authorName := "" }}
|
||||||
{{- with site.Params.author.name }}
|
{{- with site.Params.author }}
|
||||||
{{- $authorName = . }}
|
{{- if reflect.IsMap . }}
|
||||||
|
{{- with .name }}
|
||||||
|
{{- $authorName = . }}
|
||||||
|
{{- end }}
|
||||||
|
{{- else }}
|
||||||
|
{{- $authorName = . }}
|
||||||
|
{{- end }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
{{- with site.Author.name }}
|
{{- with site.Author.name }}
|
||||||
{{- $authorName = . }}
|
{{- $authorName = . }}
|
||||||
|
|||||||
Reference in New Issue
Block a user