hugo-theme-relearn/layouts/partials/_relearn/authorName.gotmpl
2024-10-11 16:46:48 +02:00

12 lines
No EOL
456 B
Go Template

{{- $authorName := "" }}
{{- with .Site.Params.author }}
{{- if reflect.IsMap . }}
{{- with .name }}
{{- $authorName = . }}
{{- end }}
{{- else }}
{{- warnf "DEPRECATED usage of 'params.author' config parameter found, replace it with `params.author.name` in your hugo.toml; see https://mcshelby.github.io/hugo-theme-relearn/basics/releasenotes/5/#5-23-0" }}
{{- $authorName = . }}
{{- end }}
{{- end }}
{{- return $authorName }}