From 9ca8c778511d6ae090414630854f1b703509b732 Mon Sep 17 00:00:00 2001 From: Aniket Bhatnagar Date: Thu, 21 Dec 2023 11:48:54 +0100 Subject: [PATCH] Added ability to customize head --- layouts/partials/head.html | 2 ++ layouts/partials/head/extensions.html | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 layouts/partials/head/extensions.html diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 04df487c..7b3d939e 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -96,3 +96,5 @@ background-color: var(--background-color); } + +{{ partial "head/extensions.html" . }} \ No newline at end of file diff --git a/layouts/partials/head/extensions.html b/layouts/partials/head/extensions.html new file mode 100644 index 00000000..07979c23 --- /dev/null +++ b/layouts/partials/head/extensions.html @@ -0,0 +1,4 @@ +{{/* + You can add further theme extensions or customizations here if they should + appear in . +*/}} \ No newline at end of file