Browse code

added support for adding content to the bottom of a page

Brandon Mathis authored on 29/09/2011 at 19:51:09
Showing 3 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,5 @@
0
+{% include disqus.html %}
1
+{% include google_plus_one.html %}
2
+{% include twitter_sharing.html %}
3
+{% include google_analytics.html %}
4
+{% include custom/after_footer.html %}
0 5
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+{% comment %}
1
+  Add content to be output at the bottom of each page. (You might use this for analytics scripts, for example)
2
+{% endcomment %}
... ...
@@ -9,9 +9,6 @@
9 9
     </div>
10 10
   </div>
11 11
   <footer role="contentinfo">{% include footer.html %}</footer>
12
-  {% include disqus.html %}
13
-  {% include google_analytics.html %}
14
-  {% include google_plus_one.html %}
15
-  {% include twitter_sharing.html %}
12
+  {% include after_footer.html %}
16 13
 </body>
17 14
 </html>