Guide_3DS/_includes/scripts.html

16 lines
505 B
HTML
Raw Normal View History

2017-09-28 23:42:38 +02:00
{% if site.footer_scripts %}
{% for script in site.footer_scripts %}
{% if script contains "://" %}
{% capture script_path %}{{ script }}{% endcapture %}
{% else %}
{% capture script_path %}{{ script | absolute_url }}{% endcapture %}
{% endif %}
<script src="{{ script_path }}"></script>
{% endfor %}
{% else %}
<script src="{{ '/assets/js/main.min.js' | absolute_url }}"></script>
{% endif %}
2016-10-30 01:02:14 +02:00
{% include analytics.html %}
{% include /comments-providers/scripts.html %}