From 29a6bd78ff0e5062975d1c1ec4b16d0f383d8d1d Mon Sep 17 00:00:00 2001
From: d3vyce <nicolas.sudres@proton.me>
Date: Mon, 11 Nov 2024 18:10:03 +0100
Subject: [PATCH] fix: `.Site.Author` deprecation

---
 layouts/_default/about.html       | 6 +++---
 layouts/partials/home/custom.html | 8 ++++----
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/layouts/_default/about.html b/layouts/_default/about.html
index 4d74524..8070801 100644
--- a/layouts/_default/about.html
+++ b/layouts/_default/about.html
@@ -2,7 +2,7 @@
 {{ $disableImageOptimization := .Site.Params.disableImageOptimization | default false }}
 <article class="flex flex-col items-center justify-center text-center">
   <header class="flex flex-col items-center mb-3">
-    {{ with .Site.Author.image }}
+    {{ with .Site.Params.Author.image }}
       {{ $authorImage := resources.Get . }}
       {{ if $authorImage }}
         {{ if not $disableImageOptimization }}
@@ -12,13 +12,13 @@
           class="mb-2 rounded-full h-36 w-36"
           width="144"
           height="144"
-          alt="{{ $.Site.Author.name | default "Author" }}"
+          alt="{{ $.Site.Params.Author.name | default "Author" }}"
           src="{{ $authorImage.RelPermalink }}"
         />
       {{ end }}
     {{ end }}
     <h1 class="text-4xl font-extrabold">
-      {{ .Site.Author.name | default .Site.Title }}
+      {{ .Site.Params.Author.name | default .Site.Title }}
     </h1>
     <div class="mt-1 text-2xl">
       {{ partialCached "author-links.html" . }}
diff --git a/layouts/partials/home/custom.html b/layouts/partials/home/custom.html
index f4617c8..18fb377 100644
--- a/layouts/partials/home/custom.html
+++ b/layouts/partials/home/custom.html
@@ -1,7 +1,7 @@
 {{ $disableImageOptimization := .Site.Params.disableImageOptimization | default false }}
 <article class="flex flex-col items-center justify-center text-center">
   <header class="flex flex-col items-center mb-3">
-    {{ with .Site.Author.image }}
+    {{ with .Site.Params.Author.image }}
       {{ $authorImage := resources.Get . }}
       {{ if $authorImage }}
         {{ if not $disableImageOptimization }}
@@ -11,15 +11,15 @@
           class="mb-2 rounded-full h-36 w-36"
           width="144"
           height="144"
-          alt="{{ $.Site.Author.name | default "Author" }}"
+          alt="{{ $.Site.Params.Author.name | default "Author" }}"
           src="{{ $authorImage.RelPermalink }}"
         />
       {{ end }}
     {{ end }}
     <h1 class="text-4xl font-extrabold">
-      {{ .Site.Author.name | default .Site.Title }}
+      {{ .Site.Params.Author.name | default .Site.Title }}
     </h1>
-    {{ with .Site.Author.headline }}
+    {{ with .Site.Params.Author.headline }}
       <h2 class="text-xl text-neutral-500 dark:text-neutral-400">
         {{ . | markdownify | emojify }}
       </h2>