diff --git a/layouts/_default/summary.html b/layouts/_default/summary.html
index 990b6a9e..cd29b29f 100644
--- a/layouts/_default/summary.html
+++ b/layouts/_default/summary.html
@@ -24,8 +24,8 @@
{{- /* Meta */ -}}
- {{- $author := $params.author | default .Site.Author.name | default (T "author") -}}
- {{- $authorLink := $params.authorlink | default .Site.Author.link | default .Site.Home.RelPermalink -}}
+ {{- $author := $params.author | default .Site.Params.Author.name | default (T "author") -}}
+ {{- $authorLink := $params.authorlink | default .Site.Params.Author.link | default .Site.Home.RelPermalink -}}
{{- $options := dict "Class" "author" "Destination" $authorLink "Title" "Author" "Rel" "author" "Icon" (dict "Class" "fas fa-user-circle fa-fw") "Content" $author -}}
{{- partial "plugin/link.html" $options -}}
@@ -72,4 +72,4 @@
{{- end -}}
-
\ No newline at end of file
+
diff --git a/layouts/index.rss.xml b/layouts/index.rss.xml
index 137d7e21..652ece2d 100644
--- a/layouts/index.rss.xml
+++ b/layouts/index.rss.xml
@@ -15,12 +15,12 @@
{{- . -}}
{{- end -}}
- {{- with .Site.Author.email -}}
+ {{- with .Site.Params.Author.email -}}
- {{- . }}{{ with $.Site.Author.name }} ({{ . }}){{ end -}}
+ {{- . }}{{ with $.Site.Params.Author.name }} ({{ . }}){{ end -}}
- {{- . }}{{ with $.Site.Author.name }} ({{ . }}){{ end -}}
+ {{- . }}{{ with $.Site.Params.Author.name }} ({{ . }}){{ end -}}
{{- end -}}
{{- with .Site.Copyright -}}
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 05e6fc7a..abbc6e8f 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -32,7 +32,7 @@
{{- /* Author */ -}}
{{- if ne .Site.Params.footer.author false -}}
- {{ .Site.Author.name }}
+ {{ .Site.Params.Author.name }}
{{- end -}}
{{- /* License */ -}}
diff --git a/layouts/partials/head/seo.html b/layouts/partials/head/seo.html
index d431ad06..6c751f7e 100644
--- a/layouts/partials/head/seo.html
+++ b/layouts/partials/head/seo.html
@@ -26,7 +26,7 @@
{{- with .Site.LanguageCode -}}
"inLanguage": "{{ . }}",
{{- end -}}
- {{- with .Site.Author.name -}}
+ {{- with .Site.Params.Author.name -}}
"author": {
"@type": "Person",
"name": {{ . | safeHTML }}
@@ -122,7 +122,7 @@
{{- with .Site.Copyright -}}
"license": {{ . | safeHTML }},
{{- end -}}
- {{- $publisher := .Params.author | default .Site.Author.name | default (T "author") | dict "name" -}}
+ {{- $publisher := .Params.author | default .Site.Params.Author.name | default (T "author") | dict "name" -}}
{{- $publisher = $params.seo.publisher | default dict | merge $publisher -}}
"publisher": {
"@type": "Organization",
@@ -141,10 +141,15 @@
{{- end -}}
{{- end -}}
},
- {{- with .Params.author | default .Site.Author.name | default (T "author") -}}
+ {{- with .Params.author | default .Site.Params.Author.name | default (T "author") -}}
"author": {
"@type": "Person",
- "name": {{ . | safeHTML }}
+ "name":
+ {{ if (eq "[]string" (printf "%T" .) ) }}
+ {{ delimit . ", " }}
+ {{ else }}
+ {{ . }}
+ {{ end }}
},
{{- end -}}
"description": {{ .Description | safeHTML }}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index b4a1d30c..6bedac77 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -39,7 +39,7 @@
{{- if .Site.Menus.main -}}
{{- end -}}
- {{- if .Site.IsMultiLingual -}}
+ {{- if hugo.IsMultilingual -}}
- {{- if .Site.IsMultiLingual -}}
+ {{- if hugo.IsMultilingual -}}