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

gitlab.com/toryanderson/hugo-icarus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Piessens <dan.piessens@centare.com>2016-02-25 17:19:46 +0300
committerDan Piessens <dan.piessens@centare.com>2016-02-25 17:19:46 +0300
commita86c6d8232fbf59658fe86a006a940c1a2d55d81 (patch)
treec545ddb65b7fa2cc684d328c4a26c45c3c896878
parent87d8b91b87f7e85d4a9bef48181579299a3a422f (diff)
Added empty templates to head and footer to allow for 3rd party plugins.
-rw-r--r--layouts/partials/footer.html1
-rw-r--r--layouts/partials/footer_custom_js.html0
-rw-r--r--layouts/partials/head.html1
-rw-r--r--layouts/partials/head_custom.html0
4 files changed, 2 insertions, 0 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index baa67f2..0a02103 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -8,3 +8,4 @@
</footer>
{{ partial "footer_js" . }}
+{{ partial "footer_custom_js" . }} \ No newline at end of file
diff --git a/layouts/partials/footer_custom_js.html b/layouts/partials/footer_custom_js.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/partials/footer_custom_js.html
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index b35f51e..cb28f43 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -27,6 +27,7 @@
{{ template "_internal/google_news.html" . }}
{{ template "_internal/schema.html" . }}
{{ template "_internal/twitter_cards.html" . }}
+ {{ partial "head_custom" . }}
</head>
<body>
<div class="container">
diff --git a/layouts/partials/head_custom.html b/layouts/partials/head_custom.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/partials/head_custom.html