Files
mehl.mx/themes/hugo-sustain/layouts/partials/js.html
Max Mehl c6ad88c112
All checks were successful
Website build and deploy / build (push) Successful in 1m11s
switch to managing CSS and JS as assets
2025-03-21 11:21:31 +01:00

18 lines
547 B
HTML

{{- range (slice "js/jquery-1.11.3.min.js" "js/filter-tags.js") }}
{{- with resources.Get . }}
{{- if eq hugo.Environment "development" }}
{{- with . }}
<script src="{{ .RelPermalink }}"></script>
{{- end }}
{{- else }}
{{- with . | minify | fingerprint }}
<script src="{{ .RelPermalink }}" integrity="{{- .Data.Integrity }}" crossorigin="anonymous"></script>
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- range .Site.Params.custom_js }}
<script src="{{ relURL . }}"></script>
{{- end }}