From 3592ce1c03633d9065a82eb7b39479e08a54e64a Mon Sep 17 00:00:00 2001 From: Regis Philibert Date: Thu, 23 Dec 2021 16:33:51 -0500 Subject: [PATCH] Re-introducing site-scripts partial for user to overwrite Fixes #464 --- layouts/_default/baseof.html | 3 ++- layouts/partials/site-scripts.html | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 layouts/partials/site-scripts.html diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 1b5d721..dc5e33b 100755 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -16,7 +16,8 @@ {{ end }} {{ partial "site-style.html" . }} - + {{ partial "site-scripts.html" . }} + {{ block "favicon" . }} {{ partialCached "site-favicon.html" . }} {{ end }} diff --git a/layouts/partials/site-scripts.html b/layouts/partials/site-scripts.html new file mode 100644 index 0000000..d00c0e6 --- /dev/null +++ b/layouts/partials/site-scripts.html @@ -0,0 +1 @@ +{{/* For Users's overwrite */}} \ No newline at end of file