2017-09-12 12:27:36 -04: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-02-23 11:03:49 -05:00
|
|
|
|
2017-12-07 08:56:14 -05:00
|
|
|
{% if site.search == true or page.layout == 'search' %}
|
2017-11-15 21:43:31 +02:00
|
|
|
<script src="{{ '/assets/js/lunr.min.js' | absolute_url }}"></script>
|
|
|
|
<script src="{{ '/assets/js/lunr-en.js' | absolute_url }}"></script>
|
|
|
|
{% endif %}
|
|
|
|
|
2016-03-10 21:13:01 -05:00
|
|
|
{% include analytics.html %}
|
2016-03-23 12:55:36 -04:00
|
|
|
{% include /comments-providers/scripts.html %}
|