aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-09-29 14:51:09 -0500
committerBrandon Mathis <brandon@imathis.com>2011-09-29 14:51:26 -0500
commitb19e7698f671ee9cde9c1015b77a7555ecfadbd1 (patch)
tree0860beefc54dd82dde4a90f1250238727bd4cd8e /.themes/classic
parent3bd4ed026eab04b5c560ca85317c982ab0679369 (diff)
downloadmy_new_personal_website-b19e7698f671ee9cde9c1015b77a7555ecfadbd1.tar.xz
my_new_personal_website-b19e7698f671ee9cde9c1015b77a7555ecfadbd1.zip
added support for adding content to the bottom of a page
Diffstat (limited to '.themes/classic')
-rw-r--r--.themes/classic/source/_includes/after_footer.html5
-rw-r--r--.themes/classic/source/_includes/custom/after_footer.html3
-rw-r--r--.themes/classic/source/_layouts/default.html5
3 files changed, 9 insertions, 4 deletions
diff --git a/.themes/classic/source/_includes/after_footer.html b/.themes/classic/source/_includes/after_footer.html
new file mode 100644
index 00000000..80a481eb
--- /dev/null
+++ b/.themes/classic/source/_includes/after_footer.html
@@ -0,0 +1,5 @@
+{% include disqus.html %}
+{% include google_plus_one.html %}
+{% include twitter_sharing.html %}
+{% include google_analytics.html %}
+{% include custom/after_footer.html %}
diff --git a/.themes/classic/source/_includes/custom/after_footer.html b/.themes/classic/source/_includes/custom/after_footer.html
new file mode 100644
index 00000000..bce25dd9
--- /dev/null
+++ b/.themes/classic/source/_includes/custom/after_footer.html
@@ -0,0 +1,3 @@
+{% comment %}
+ Add content to be output at the bottom of each page. (You might use this for analytics scripts, for example)
+{% endcomment %}
diff --git a/.themes/classic/source/_layouts/default.html b/.themes/classic/source/_layouts/default.html
index f670e1c9..f23b07b8 100644
--- a/.themes/classic/source/_layouts/default.html
+++ b/.themes/classic/source/_layouts/default.html
@@ -9,9 +9,6 @@
</div>
</div>
<footer role="contentinfo">{% include footer.html %}</footer>
- {% include disqus.html %}
- {% include google_analytics.html %}
- {% include google_plus_one.html %}
- {% include twitter_sharing.html %}
+ {% include after_footer.html %}
</body>
</html>