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

github.com/MunifTanjim/minimo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Jost <schnouki@schnouki.net>2018-07-07 01:34:32 +0300
committerMunif Tanjim <muniftanjim@gmail.com>2018-07-07 01:34:32 +0300
commit99afa7b310fe38a394606f189b4806a7fdb5df50 (patch)
tree7d2a2e0f6e5c40b707e2a64b2a24109305d725f6
parent19c6b0844eaa093e0e001f920a8352f0afca4bfb (diff)
add [templates]: placeholder partials "head/extra" and "footer/extra"comments/stapsher
resolves #156
-rw-r--r--layouts/partials/footer/extra.html5
-rw-r--r--layouts/partials/footer/scripts.html2
-rw-r--r--layouts/partials/head/extra.html5
-rw-r--r--layouts/partials/head/head.html1
4 files changed, 13 insertions, 0 deletions
diff --git a/layouts/partials/footer/extra.html b/layouts/partials/footer/extra.html
new file mode 100644
index 0000000..4c8742e
--- /dev/null
+++ b/layouts/partials/footer/extra.html
@@ -0,0 +1,5 @@
+{{/*
+ If you need to add content to your page footer, override this template in your
+ blog by creating a file named `/layout/partials/footer/extra.html`. This way
+ you don't have to edit the theme itself.
+*/}}
diff --git a/layouts/partials/footer/scripts.html b/layouts/partials/footer/scripts.html
index e6a35af..e3ccc23 100644
--- a/layouts/partials/footer/scripts.html
+++ b/layouts/partials/footer/scripts.html
@@ -7,3 +7,5 @@
{{- end -}}
{{ partial "footer/mathjax" . }}
+
+{{ partial "footer/extra" . }}
diff --git a/layouts/partials/head/extra.html b/layouts/partials/head/extra.html
new file mode 100644
index 0000000..00e2055
--- /dev/null
+++ b/layouts/partials/head/extra.html
@@ -0,0 +1,5 @@
+{{/*
+ If you need to add content to your page header, override this template in your
+ blog by creating a file named `/layout/partials/head/extra.html`. This way you
+ don't have to edit the theme itself.
+*/}}
diff --git a/layouts/partials/head/head.html b/layouts/partials/head/head.html
index 3fd576c..292c267 100644
--- a/layouts/partials/head/head.html
+++ b/layouts/partials/head/head.html
@@ -7,4 +7,5 @@
{{ end }}
{{ partial "head/hreflang" . }}
{{ partial "head/includes" . }}
+ {{ partial "head/extra" . }}
</head>