From 5eca53b4c420afef3fd214f4eadb35c63a3d6887 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Thu, 18 Dec 2025 23:32:18 +0100 Subject: [PATCH] =?utf8?q?Vor=C3=BCbergehend=20auf=20hartkodiertes=20origi?= =?utf8?q?nal=20CSS=20umgestellt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- layouts/_partials/head-original.html | 36 ++++++++++++++++++++++++++++ layouts/baseof.html | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 layouts/_partials/head-original.html diff --git a/layouts/_partials/head-original.html b/layouts/_partials/head-original.html new file mode 100644 index 0000000..1b18070 --- /dev/null +++ b/layouts/_partials/head-original.html @@ -0,0 +1,36 @@ + + +{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }} + + + + + + + + + + + + + + + + + + + + + + +{{ block "custom_css" . }}{{ end }} + + + + + +{{ partialCached "head/js.html" . }} diff --git a/layouts/baseof.html b/layouts/baseof.html index 6b0ef53..aa820cc 100644 --- a/layouts/baseof.html +++ b/layouts/baseof.html @@ -1,7 +1,7 @@ - {{ partial "head.html" . }} + {{ partial "head-original.html" . }}
-- 2.39.5