diff options
Diffstat (limited to '.themes')
-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> |