{{ $scr := $.Scratch }} {{/* Rename _vendor dir as GitHub Pages doesn't automatically publish folders with underscores. */}} {{ $libs := slice }} {{- $lib_names := slice "jquery.min" "bootstrap.bundle.min" "instantpage" -}} {{- range $lib_names -}} {{- $libs = $libs | append (resources.Get (printf "js/_vendor/%s.js" .) ) -}} {{- end -}} {{ $libs := $libs | resources.Concat "js/vendor-bundle.js" | minify }} {{- if hugo.IsProduction -}} {{ $libs = $libs | fingerprint "md5" }} {{- end -}} {{/* Attempt to load local vendor JS, otherwise load from CDN. */}} {{ $js := site.Data.assets.js }} {{ if not ($scr.Get "use_cdn") }} {{ else }} {{ $require_isotope := .Params.require_isotope | default site.Params.extensions.isotope.enable | default false }} {{ if $require_isotope }} {{ printf "" (printf $js.imagesLoaded.url $js.imagesLoaded.version) $js.imagesLoaded.sri | safeHTML }} {{ printf "" (printf $js.isotope.url $js.isotope.version) $js.isotope.sri | safeHTML }} {{ end }} {{/* Workaround `.HasShortcode "gallery"` detection issue on `home/` WidgetPage v1 */}} {{ if ($scr.Get "HasNestedGalleryShortcode") | or site.Params.require_fancybox }} {{ printf "" (printf $js.fancybox.url $js.fancybox.version) $js.fancybox.sri | safeHTML }} {{ end }} {{ if or .Params.diagram site.Params.features.diagram.enable }} {{ printf "" (printf $js.mermaid.url $js.mermaid.version) $js.mermaid.sri | safeHTML }} {{ end }} {{ if $.Scratch.Get "highlight_enabled" }} {{ $v := $js.highlight.version }} {{ printf "" (printf $js.highlight.url $v) $js.highlight.sri | safeHTML }} {{ $v := $js.highlight_lang.version }} {{ range site.Params.features.syntax_highlighter.extra_languages }} {{ printf "" (printf $js.highlight_lang.url $v .) | safeHTML }} {{ end }} {{ end }} {{ end }} {{/* Maps JS. */}} {{ $map_provider := lower site.Params.features.map.provider }} {{ if eq $map_provider "google" }} {{ if ($scr.Get "use_cdn") }} {{ printf "" (printf $js.gmaps.url $js.gmaps.version) $js.gmaps.sri | safeHTML }} {{ end }} {{ else if (in (slice "mapnik" "mapbox") $map_provider) | and ($scr.Get "use_cdn") }} {{ printf "" (printf $js.leaflet.url $js.leaflet.version) $js.leaflet.sri | safeHTML }} {{ end }} {{/* Load hash anchors for documentation pages. */}} {{ if in (slice "book" "docs") .Type }} {{ printf "" (printf $js.anchor.url $js.anchor.version) $js.anchor.sri | safeHTML }} {{ end }} {{ $algoliaConfig := dict }} {{ $search_provider := lower site.Params.features.search.provider }} {{ if eq $search_provider "wowchemy" }} {{/* Wowchemy built-in search result template (Fuse). */}} {{ if ($scr.Get "use_cdn") }} {{ printf "" (printf $js.fuse.url $js.fuse.version) $js.fuse.sri | safeHTML }} {{ printf "" (printf $js.mark.url $js.mark.version) $js.mark.sri | safeHTML }} {{ end }} {{ else if eq $search_provider "algolia" }} {{/* Algolia search result template. */}} {{ if ($scr.Get "use_cdn") }} {{ printf "" (printf $js.instantsearch.url $js.instantsearch.version) | safeHTML }} {{ end }} {{ $algoliaConfig = dict "appId" (site.Params.features.search.algolia.app_id | default "") "apiKey" (site.Params.features.search.algolia.api_key | default "") "indexName" (site.Params.features.search.algolia.index_name | default "") "analytics" (site.Params.features.search.algolia.analytics | default false) "personalization" (site.Params.features.search.algolia.personalization | default false) }} {{ end }} {{/* Charts */}} {{ if .HasShortcode "chart" }} {{ printf "" (printf $js.plotly.url $js.plotly.version) $js.plotly.sri | safeHTML }} {{ end }} {{/* Disqus Comment Count JS. */}} {{/* Note: count can appear both in listing previews and on the content page itself. */}} {{ $comments_provider := trim (site.Params.features.comment.provider | lower) " " }} {{ if eq $comments_provider "disqus" | and (site.Params.features.comment.disqus.show_count | default true) }} {{end}} {{ $js_search_params := dict }} {{ if in (slice "wowchemy" "algolia") $search_provider }} {{/* Configure search engine. */}} {{ $min_length := site.Params.features.search.wowchemy.min_length | default 1 }} {{ $threshold := site.Params.features.search.wowchemy.threshold | default 0.3 }} {{ $search_config := dict "indexURI" ("/index.json" | relLangURL) "threshold" $threshold "minLength" $min_length }} {{ $search_i18n := dict "placeholder" (i18n "search_placeholder") "results" (i18n "search_results") "no_results" (i18n "search_no_results") }} {{ $content_types := dict "post" (i18n "posts") "project" (i18n "projects") "publication" (i18n "publications") "event" (i18n "talks") "slides" (i18n "slides") "authors" (i18n "authors") }} {{ $js_search_params = dict "search_config" $search_config "algoliaConfig" $algoliaConfig "i18n" $search_i18n "content_type" $content_types }} {{ end }} {{ if eq $search_provider "algolia" }} {{ $js_algolia_search := resources.Get "js/algolia-search.js" | js.Build (dict "format" "esm" "targetPath" (printf "%s/js/algolia-search-built.js" .Lang) "params" $js_search_params) }} {{- if hugo.IsProduction -}} {{- $js_algolia_search = $js_algolia_search | minify | fingerprint "md5" -}} {{- end -}} {{ end }} {{/* Page Data */}} {{ $default_headroom := not (.IsHome | or (eq .Type "book")) }} {{ $use_headroom := cond (isset $.Params "header.on_scroll") (eq $.Params.header.on_scroll "disappear") (default $default_headroom) }} {{ printf "" (dict "use_headroom" $use_headroom | jsonify) | safeHTML}} {{/* Headroom */}} {{ if $use_headroom }} {{ $headroom := resources.Get "js/wowchemy-headroom.js" | js.Build (dict "format" "esm" "minify" true) }} {{- if hugo.IsProduction -}} {{- $headroom = $headroom | fingerprint "md5" -}} {{- end -}} {{- end -}} {{ $js_license := printf "/*! Wowchemy v%s | https://wowchemy.com/ */\n" site.Data.wowchemy.version }} {{ $js_license := $js_license | printf "%s/*! Copyright 2016-present George Cushen (https://georgecushen.com/) */\n" }} {{ $js_license := $js_license | printf "%s/*! License: https://github.com/wowchemy/wowchemy-hugo-themes/blob/main/LICENSE.md */\n" }} {{ $js_bundle_head := $js_license | resources.FromString "js/bundle-head.js" }} {{ $js_params := dict "hugoEnvironment" hugo.Environment "codeHighlighting" ($scr.Get "highlight_enabled" | default false) "searchEnabled" (in (slice "wowchemy" "algolia") $search_provider) }} {{ $js_academic := resources.Get "js/wowchemy.js" | js.Build (dict "targetPath" (printf "%s/js/wow-core.js" .Lang ) "params" $js_params) }} {{ $js_bundle := slice $js_academic }} {{ if eq $search_provider "wowchemy" }} {{ $js_academic_search := resources.Get "js/wowchemy-search.js" | js.Build (dict "targetPath" (printf "%s/js/wow-search-built.js" .Lang) "params" $js_search_params) }} {{ $js_bundle = $js_bundle | append $js_academic_search }} {{ end }} {{ range site.Params.plugins_js }} {{ $js_bundle = $js_bundle | append (resources.Get (printf "js/%s.js" .)) }} {{ end }} {{ $js_bundle = $js_bundle | resources.Concat (printf "%s/js/wowchemy-bundle.js" .Lang) }} {{- if hugo.IsProduction -}} {{- $js_bundle = $js_bundle | js.Build (dict "format" "iife") | minify -}} {{- else -}} {{- $js_bundle = $js_bundle | js.Build (dict "format" "iife" "sourceMap" "inline") -}} {{- end -}} {{ $js_bundle = slice $js_bundle_head $js_bundle | resources.Concat (printf "%s/js/wowchemy.min.js" .Lang) }} {{- if hugo.IsProduction -}} {{ $js_bundle = $js_bundle | fingerprint "md5" }} {{- end -}} {{/* Maps */}} {{ if site.Params.features.map.provider }} {{ $js := resources.Get "js/wowchemy-map.js" | js.Build (dict "format" "esm" "minify" true) }} {{- if hugo.IsProduction -}} {{- $js = $js | fingerprint "md5" -}} {{- end -}} {{- end -}} {{/* Carousel */}} {{ $hasCarousel := where site.Pages "Params.widget" "slider" }} {{ if $hasCarousel }} {{ $js := resources.Get "js/wowchemy-carousel.js" | js.Build (dict "format" "esm" "minify" true) }} {{- if hugo.IsProduction -}} {{- $js = $js | fingerprint "md5" -}} {{- end -}} {{- end -}} {{/* Publications */}} {{ $hasPublications := where site.Pages "Type" "publication" }} {{ if $hasPublications }} {{ partial "citation" . }} {{ $js := resources.Get "js/wowchemy-publication.js" | js.Build (dict "format" "esm" "minify" true) }} {{- if hugo.IsProduction -}} {{- $js = $js | fingerprint "md5" -}} {{- end -}} {{- end -}} {{ partial "custom_js" . }}