2024-03-10 15:27:36 +00:00
|
|
|
{{ if (.Eq (site.GetPage "/")) }}
|
2024-03-12 09:12:11 +00:00
|
|
|
{{- $randomize := (resources.Get "js/randomize.js" ) }}
|
|
|
|
{{- $image_array := (resources.Get "js/image-array.js" ) }}
|
|
|
|
{{- $text_array := (resources.Get "js/text-array.js" )}}
|
|
|
|
{{- $randomize_combined := slice $image_array $text_array $randomize | resources.Concat "js/random.js" | resources.Minify }}
|
2024-03-10 15:27:36 +00:00
|
|
|
|
|
|
|
{{- if not site.Params.assets.disableFingerprinting }}
|
2024-03-12 09:12:11 +00:00
|
|
|
{{- $randomize_combined := $randomize_combined | fingerprint }}
|
|
|
|
<script async crossorigin="anonymous" src="{{ $randomize_combined.RelPermalink }}" integrity="{{ $randomize_combined.Data.Integrity }}"></script>
|
2024-03-10 15:27:36 +00:00
|
|
|
{{ else }}
|
2024-03-12 09:12:11 +00:00
|
|
|
<script async crossorigin="anonymous" src="{{ $randomize_combined.RelPermalink }}"></script>
|
2024-03-10 15:27:36 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|