2016-02-02 03:07:13 +01:00
|
|
|
{% if layout.common-ext-js %}
|
|
|
|
{% for js in layout.common-ext-js %}
|
2015-03-03 02:10:41 +01:00
|
|
|
<script src="{{ js }}"></script>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2015-03-02 21:06:05 +01:00
|
|
|
|
2016-02-05 01:40:56 +01:00
|
|
|
{% if page.ext-js %}
|
|
|
|
{% for js in page.ext-js %}
|
|
|
|
<script src="{{ js }}"></script>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2015-03-02 21:06:05 +01:00
|
|
|
|
2016-02-05 01:40:56 +01:00
|
|
|
{% if page.js %}
|
|
|
|
{% for js in page.js %}
|
|
|
|
<script src="{{ js | prepend: site.baseurl | replace: '//', '/' }}"></script>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2015-03-02 21:06:05 +01:00
|
|
|
|
2016-02-02 03:07:13 +01:00
|
|
|
{% if layout.common-js %}
|
|
|
|
{% for js in layout.common-js %}
|
2016-01-22 04:13:47 +01:00
|
|
|
<!-- doing something a bit funky here because I want to be careful not to include JQuery twice! -->
|
|
|
|
{% if js contains 'jquery' %}
|
|
|
|
<script>
|
|
|
|
if (typeof jQuery == 'undefined') {
|
|
|
|
document.write('<script src="{{ js | prepend: site.baseurl | replace: "//", "/" }}"></scr' + 'ipt>');
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{% else %}
|
|
|
|
<script src="{{ js | prepend: site.baseurl | replace: '//', '/' }}"></script>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% include google_analytics.html %}
|