diff options
author | fhemberger <mail@frederic-hemberger.de> | 2011-09-04 12:17:44 +0200 |
---|---|---|
committer | fhemberger <mail@frederic-hemberger.de> | 2011-09-04 12:17:44 +0200 |
commit | 8de095bfa919cb667496989de092626be9fab753 (patch) | |
tree | 587b11ab9ad81f8f355524703dbf626158be6d31 /.themes/classic | |
parent | 2efe11e0eb133059f5e6cfe85dbe7bc2e36bf389 (diff) | |
download | my_new_personal_website-8de095bfa919cb667496989de092626be9fab753.tar.xz my_new_personal_website-8de095bfa919cb667496989de092626be9fab753.zip |
move code for Twitter, Google +1 and Google Analytics to bottom of page, as inline <script> tags are always blocking page load
Diffstat (limited to '.themes/classic')
-rw-r--r-- | .themes/classic/source/_includes/head.html | 3 | ||||
-rw-r--r-- | .themes/classic/source/_layouts/default.html | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.themes/classic/source/_includes/head.html b/.themes/classic/source/_includes/head.html index d6a6735b..2799ee53 100644 --- a/.themes/classic/source/_includes/head.html +++ b/.themes/classic/source/_includes/head.html @@ -26,8 +26,5 @@ <script src="http://s3.amazonaws.com/ender-js/jeesh.min.js"></script> <script src="{{ root_url }}/javascripts/octopress.js" type="text/javascript"></script> <link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml"/> - {% include google_analytics.html %} - {% include google_plus_one.html %} - {% include twitter_sharing.html %} {% include custom/head.html %} </head> diff --git a/.themes/classic/source/_layouts/default.html b/.themes/classic/source/_layouts/default.html index 57147575..5523ac1b 100644 --- a/.themes/classic/source/_layouts/default.html +++ b/.themes/classic/source/_layouts/default.html @@ -9,5 +9,8 @@ </div> </div> <footer>{% include footer.html %}</footer> + {% include google_analytics.html %} + {% include google_plus_one.html %} + {% include twitter_sharing.html %} </body> </html> |