summaryrefslogtreecommitdiffstats
path: root/layouts/partials/site-author.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/site-author.html')
-rw-r--r--layouts/partials/site-author.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/layouts/partials/site-author.html b/layouts/partials/site-author.html
deleted file mode 100644
index cd6dbf4..0000000
--- a/layouts/partials/site-author.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{{- /*
-
-This partial is used to get the site author information.
-
-In Hugo v0.124.0, the site.Author variable was deprecated. Instead, it is recommended to use
-the "author" parameters in the site configuration file.
-
-This partial checks for the presence of author information in both site.Author and site.Params.author.
-If both are present, preference is given to site.Params.author.
-
-The result is stored in the $siteAuthor variable and returned by the partial.
-
-Usage:
-
- {{ $siteAuthor := partial "site-author.html" . }}
-
- {{ with $siteAuthor.name }} {{ . }} {{ end }}
- {{ with $siteAuthor.email }} {{ . }} {{ end }}
- {{ with $siteAuthor.github }} {{ . }} {{ end }}
- {{ with $siteAuthor.twitter }} {{ . }} {{ end }}
- {{ with $siteAuthor.location }} {{ . }} {{ end }}
-
-For more information, see: https://github.com/gohugoio/hugo/releases/tag/v0.124.0
-*/ -}}
-
-{{- $siteAuthor := dict "name" "" "email" "" "github" "" "twitter" "" "location" "" -}}
-
-{{- if site.Params.author -}}
- {{- $siteAuthor = merge $siteAuthor site.Params.author -}}
-{{- else if site.Author -}}
- {{- $siteAuthor = merge $siteAuthor site.Author -}}
- {{- warnf "The author key in site configuration is deprecated. Use site.params.author instead." }}
-{{- end -}}
-
-{{- return $siteAuthor -}}