diff --git a/layouts/_default/summary.html b/layouts/_default/summary.html
index 6d40d6ac..8007fca1 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 -}}
diff --git a/layouts/index.rss.xml b/layouts/index.rss.xml
index 355c26a5..971750a5 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 31f210f2..98dbf63d 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..98cf43be 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,7 +141,7 @@
{{- 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 }}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 46ae8d37..10948a0a 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 -}}