All checks were successful
Website build and deploy / build (push) Successful in 1m11s
18 lines
547 B
HTML
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 }}
|