Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/budparr/gohugo-theme-ananke.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRegis Philibert <login@regisphilibert.com>2021-12-24 00:33:51 +0300
committerRegis Philibert <login@regisphilibert.com>2021-12-24 00:33:51 +0300
commit3592ce1c03633d9065a82eb7b39479e08a54e64a (patch)
tree49ce3804f65ddb264e6be1130465c72084ea7e72
parent73a363ca524fdf2f24e5ff220ced3402c533d180 (diff)
Re-introducing site-scripts partial for user to overwrite
Fixes #464
-rwxr-xr-xlayouts/_default/baseof.html3
-rw-r--r--layouts/partials/site-scripts.html1
2 files changed, 3 insertions, 1 deletions
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