f4d0b8c942
This is causing issues when building translations, as it would cache the first language and use that across the board.
30 lines
994 B
HTML
30 lines
994 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 %}
|
|
|
|
<!-- hacks-guide change start: Disable caching -->
|
|
{% 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 %}
|
|
<!-- hacks-guide change end -->
|
|
|
|
{% 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 %}
|