beautifulSA-jekyll/_includes/footer-scripts.html

25 lines
589 B
HTML
Raw Normal View History

{% if page.common-ext-js %}
{% for js in page.common-ext-js %}
<script src="{{ js }}"></script>
{% endfor %}
{% endif %}
2015-03-02 21:06:05 +01:00
{% 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 %}
2015-03-02 21:06:05 +01:00
{% endif %}
{% if page.js %}
{% for js in page.js %}
<script src="{{ js | prepend: site.baseurl | replace: '//', '/' }}"></script>
2015-03-02 21:06:05 +01:00
{% endfor %}
{% endif %}
{% include google_analytics.html %}