From 323fc7a02a3a2d2fe74cf0d28cba3f6601979f14 Mon Sep 17 00:00:00 2001 From: Max Mehl Date: Mon, 2 Mar 2026 17:19:04 +0100 Subject: [PATCH] feat: improve site title to show actual title first --- themes/hugo-sustain/layouts/partials/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/hugo-sustain/layouts/partials/head.html b/themes/hugo-sustain/layouts/partials/head.html index 1deb62c..06071f9 100644 --- a/themes/hugo-sustain/layouts/partials/head.html +++ b/themes/hugo-sustain/layouts/partials/head.html @@ -9,7 +9,7 @@ {{- if .Params.heading -}} {{- $title = .Params.heading -}} {{- else -}} - {{- $title = print .Site.Title " | " .Title -}} + {{- $title = printf "%s | %s" .Title .Site.Title -}} {{- end -}} {{- end -}}