4e7fce4b19
Guide_3DS@4de4c0b4ba894ce6a0fa7662d951d55cf42fbe56
29 lines
987 B
HTML
29 lines
987 B
HTML
{% if site.footer_scripts %}
|
|
{% for script in site.footer_scripts %}
|
|
<script src="{{ script | relative_url }}"></script>
|
|
{% endfor %}
|
|
{% else %}
|
|
<script src="{{ '/assets/js/main.min.js' | relative_url }}"></script>
|
|
{% endif %}
|
|
|
|
<!-- for guide purposes all caching is removed and is separately built. -->
|
|
{% if site.search == true or page.layout == "search" %}
|
|
{%- assign search_provider = site.search_provider | default: "lunr" -%}
|
|
{%- case search_provider -%}
|
|
{%- when "lunr" -%}
|
|
{% include search/lunr-search-scripts.html %}
|
|
{%- when "google" -%}
|
|
{% include search/google-search-scripts.html %}
|
|
{%- when "algolia" -%}
|
|
{% include search/algolia-search-scripts.html %}
|
|
{%- endcase -%}
|
|
{% endif %}
|
|
|
|
{% include analytics.html %}
|
|
{% include /comments-providers/scripts.html %}
|
|
|
|
{% if site.after_footer_scripts %}
|
|
{% for script in site.after_footer_scripts %}
|
|
<script src="{{ script | relative_url }}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|