17 lines
673 B
HTML
17 lines
673 B
HTML
{% if jekyll.environment == 'production' and site.google_analytics %}
|
|
{% include google-analytics.html %}
|
|
{% endif %}
|
|
|
|
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
|
|
<script async src="{{ '/assets/javascripts/main.js' | relative_url }}"></script>
|
|
|
|
{% if site.search %}
|
|
{%- assign search_provider = site.search_provider | default: "lunr" -%}
|
|
{%- case search_provider -%}
|
|
{%- when "lunr" -%}
|
|
{% include search/lunr-search-scripts.html %}
|
|
{%- when "algolia" -%}
|
|
{% include search/algolia-search-scripts.html %}
|
|
{%- endcase -%}
|
|
{% endif %}
|