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

github.com/parsiya/Hugo-Octopress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/extend_footer.html3
-rw-r--r--layouts/partials/extend_header.html3
-rw-r--r--layouts/partials/footer.html3
-rwxr-xr-xlayouts/partials/header.html4
4 files changed, 13 insertions, 0 deletions
diff --git a/layouts/partials/extend_footer.html b/layouts/partials/extend_footer.html
new file mode 100644
index 0000000..99dc546
--- /dev/null
+++ b/layouts/partials/extend_footer.html
@@ -0,0 +1,3 @@
+<!-- Copy this file into your repository/layouts/partials and modify it -->
+
+<!-- Everything here will be added after the <footer> tag on every page --> \ No newline at end of file
diff --git a/layouts/partials/extend_header.html b/layouts/partials/extend_header.html
new file mode 100644
index 0000000..3c15467
--- /dev/null
+++ b/layouts/partials/extend_header.html
@@ -0,0 +1,3 @@
+<!-- Copy this file into your repository/layouts/partials and modify it -->
+
+<!-- Everything here will be added to the end of the <head> tag on every page --> \ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 5aa5143..4817304 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -4,6 +4,9 @@
</p>
</footer>
+ <!-- Add extend_footer.html -->
+ {{ partial "extend_footer.html" . }}
+
<!-- Piwik -->
{{ with .Site.Params.analytics.piwik.ID }}
<script type="text/javascript">
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 715b697..1915602 100755
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -54,6 +54,10 @@
{{ with .Site.Params.twitterCardEnabled }}
{{ partial "custom_twitter_card.html" $ }}
{{ end }}
+
+ <!-- Add extend_header.html -->
+ {{ partial "extend_header.html" . }}
+
</head>
<body>