From 7d240e17acc30398063991f7e2867a9938e19869c3dcc65f905d65e7d882ff0b Mon Sep 17 00:00:00 2001 From: Nicholas Johnson <> Date: Fri, 18 Sep 2026 00:00:00 +0000 Subject: Include the site title in page titles Entry and taxonomy pages set the document title to the page title on its own, so a bookmark, a browser tab or a search result gave no indication of which site the page belonged to. Append the site title everywhere except the homepage, where the two are already the same. Co-Authored-By: Claude Opus 5 --- layouts/_partials/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/_partials/head.html b/layouts/_partials/head.html index 05e8eae..5a1f89a 100644 --- a/layouts/_partials/head.html +++ b/layouts/_partials/head.html @@ -21,5 +21,5 @@ {{ if (not (fileExists "static/favicon.ico")) }} {{- end }} - {{ .Title }} + {{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }} \ No newline at end of file -- cgit v1.2.3