From 743404cf1d750e4a034250646712b06fd4ef0417 Mon Sep 17 00:00:00 2001 From: Daniel Kulesz <1338148+kuleszdl@users.noreply.github.com> Date: Sun, 28 Dec 2025 22:04:29 +0100 Subject: [PATCH 1/2] Remove call to sanitizeURL Seems to have been deprecated --- layouts/_default/single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 2f388f7..83209d5 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,5 +1,5 @@ {{ partial "header.html" . }} -{{ $baseurl := .Site.BaseURL | sanitizeurl }} +{{ $baseurl := .Site.BaseURL }} {{ $author := .Site.Params.Author }} {{ if .Params.Author }} {{ $author = .Params.Author }} @@ -41,4 +41,4 @@

{{ .Title }}

-{{ partial "footer.html" . }} \ No newline at end of file +{{ partial "footer.html" . }} From 890d991adf7e869c5f17c7110ca146990bbaaf4e Mon Sep 17 00:00:00 2001 From: Daniel Kulesz <1338148+kuleszdl@users.noreply.github.com> Date: Sun, 28 Dec 2025 22:17:28 +0100 Subject: [PATCH 2/2] Use updated functions for now-deprecated PrevPage / NextPage --- layouts/partials/footer.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 35f8718..71fed43 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -14,11 +14,11 @@

- {{ if or (.NextPage) (.PrevPage) }} + {{ if or (.Page.Next) (.Page.Prev) }}