bcd6126612
* Use relative_url and absolute_url where possible Drops the `contains "://"` check, adopt Jekyll 3.7 Ref: https://github.com/mmistakes/minimal-mistakes/pull/2385#issuecomment-579882236 * One more unneeded {% assign %} * Remove one more assign as noted by mmistakes * Consolidate 4 more captures * Consolidate an extra assign on "active" class
29 lines
1,000 B
HTML
29 lines
1,000 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>
|
|
<script src="https://kit.fontawesome.com/4eee35f757.js"></script>
|
|
{% endif %}
|
|
|
|
{% if site.search == true or page.layout == "search" %}
|
|
{%- assign search_provider = site.search_provider | default: "lunr" -%}
|
|
{%- case search_provider -%}
|
|
{%- when "lunr" -%}
|
|
{% include_cached search/lunr-search-scripts.html %}
|
|
{%- when "google" -%}
|
|
{% include_cached search/google-search-scripts.html %}
|
|
{%- when "algolia" -%}
|
|
{% include_cached 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 %}
|