Skip to content

Commit

Permalink
moved external scripts from <head> to the end of <body>
Browse files Browse the repository at this point in the history
  • Loading branch information
mstreuhofer committed Jan 2, 2015
1 parent 7792e32 commit ceb4837
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@
<link href="{{ SITEURL }}/favicon.png" rel="icon">
<link href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}" media="screen, projection"
rel="stylesheet" type="text/css">
<script src="{{ SITEURL }}/theme/js/modernizr-2.0.js"></script>
<script src="{{ SITEURL }}/theme/js/ender.js"></script>
<script src="{{ SITEURL }}/theme/js/octopress.js" type="text/javascript"></script>

<link href="//fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic"
rel="stylesheet" type="text/css">
Expand All @@ -59,6 +56,9 @@
</div>
</div>
<footer role="contentinfo">{% include '_includes/footer.html' %}</footer>
<script src="{{ SITEURL }}/theme/js/modernizr-2.0.js"></script>
<script src="{{ SITEURL }}/theme/js/ender.js"></script>
<script src="{{ SITEURL }}/theme/js/octopress.js" type="text/javascript"></script>
{% include '_includes/after_footer.html' %}
</body>
</html>

0 comments on commit ceb4837

Please sign in to comment.