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

github.com/spech66/bootstrap-bp-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pech <windows@spech.de>2020-04-22 19:11:08 +0300
committerGitHub <noreply@github.com>2020-04-22 19:11:08 +0300
commitfabb8570b87a10f08e406a8424372acdba605588 (patch)
tree2f560e2f6d832500f7e063fc2b310d9a979790de
parente770a7a31e27fc680c7317c03ae72d6f9a882f17 (diff)
parent116c2804d27c3eceac5be42af55eac33107982b3 (diff)
Merge pull request #5 from giuliov/master
added easy customization of <head/>
-rw-r--r--layouts/partials/head.html3
-rw-r--r--layouts/partials/head_custom.html1
2 files changed, 4 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 63a7bbc..3a75478 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -38,3 +38,6 @@
{{ $pagestyle := resources.Get . | minify | fingerprint "sha512" }}
<link rel="stylesheet" href="{{ $pagestyle.RelPermalink }}" integrity="{{ $pagestyle.Data.Integrity }}">
{{- end }}
+
+<!-- allow easy customization -->
+{{- partial "head_custom.html" . -}}
diff --git a/layouts/partials/head_custom.html b/layouts/partials/head_custom.html
new file mode 100644
index 0000000..6ed20a7
--- /dev/null
+++ b/layouts/partials/head_custom.html
@@ -0,0 +1 @@
+<!-- customizations here --> \ No newline at end of file