25 lines
589 B
HTML
25 lines
589 B
HTML
{% if page.common-ext-js %}
|
|
{% for js in page.common-ext-js %}
|
|
<script src="{{ js }}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if page.common-js %}
|
|
{% for js in page.common-js %}
|
|
<script src="{{ js | prepend: site.baseurl | replace: '//', '/' }}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if page.ext-js %}
|
|
{% for js in page.ext-js %}
|
|
<script src="{{ js }}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if page.js %}
|
|
{% for js in page.js %}
|
|
<script src="{{ js | prepend: site.baseurl | replace: '//', '/' }}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% include google_analytics.html %} |