diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-09-29 14:51:09 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-09-29 14:51:26 -0500 |
commit | b19e7698f671ee9cde9c1015b77a7555ecfadbd1 (patch) | |
tree | 0860beefc54dd82dde4a90f1250238727bd4cd8e /.themes/classic | |
parent | 3bd4ed026eab04b5c560ca85317c982ab0679369 (diff) | |
download | my_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.html | 5 | ||||
-rw-r--r-- | .themes/classic/source/_includes/custom/after_footer.html | 3 | ||||
-rw-r--r-- | .themes/classic/source/_layouts/default.html | 5 |
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> |