Move <script> tags to top of body

Having <script> tags at the bottom of the <body> caused some widgets
that relied upon JavaScript to fail, as the required libraries had not
been loaded at the point where the widgets were added to the page.
This commit is contained in:
Tim Heap 2014-09-04 14:38:17 +10:00
parent f5d37db916
commit f2b9615ac8

View file

@ -22,10 +22,10 @@
<p class="browsermessage">You are using an <strong>outdated</strong> browser not supported by this software. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a>.</p>
<![endif]-->
{% block js %}{% endblock %}
<div class="wrapper">
{% block furniture %}{% endblock %}
</div>
{% block js %}{% endblock %}
</body>
</html>