3997a1d8aa
This is the solution to making sure things that need translating aren't cached from English. A continuation of another commit that needed nocache. ALSO:Add kartdlphax to progress sidebar
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 %}
|