mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-15 08:31:34 -04:00
parent
47bf2fcbe2
commit
23fcfb7f74
@ -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 = . }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user