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

github.com/dataCobra/hugo-vitae.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--layouts/partials/extend_head.html5
-rw-r--r--layouts/partials/head.html1
2 files changed, 6 insertions, 0 deletions
diff --git a/layouts/partials/extend_head.html b/layouts/partials/extend_head.html
new file mode 100644
index 0000000..731bd8f
--- /dev/null
+++ b/layouts/partials/extend_head.html
@@ -0,0 +1,5 @@
+<!-- Head custom content area start -->
+<!--
+Insert any custom code (web-analytics, resources, etc.) - it will appear in the <head></head> section of every page. Can be overwritten by partial with the same name in the global layouts.
+-->
+<!-- Head custom content area end -->
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index f104f2c..a83ad14 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -53,4 +53,5 @@
{{- else -}}
<title>{{ .Title }} | {{ .Site.Title }}</title>
{{- end -}}
+ {{- partial "extend_head.html" . -}}
</head>