Welcome to mirror list, hosted at ThFree Co, Russian Federation.

script-src.html « spruce « jslibs « partials « layouts « spruce - github.com/gohugoio/hugo-mod-jslibs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fcab7226407547765b28390202e885cb52d4a4d (plain)
1
2
3
4
5
6
{{- $isProd := hugo.IsProduction -}}
{{- $js := resources.Get "jslibs/spruce/spruce.umd.js" -}}
{{- if $isProd }}
  {{ $js = $js | minify | fingerprint }}
{{ end -}}
<script src="{{ $js.RelPermalink }}" {{ if $isProd }} integrity="{{ $js.Data.Integrity }}" {{ end }}></script>