oops, fixed

This commit is contained in:
Joshua Goins 2022-12-27 21:49:08 -05:00
parent 69db5e0e28
commit 51dcf3441d

View file

@ -25,15 +25,15 @@
{{ $masonry := resources.Get "js/masonry.min.js" }} {{ $masonry := resources.Get "js/masonry.min.js" }}
{{ if hugo.IsProduction }} {{ if hugo.IsProduction }}
{{ $masonry = $style | minify | fingerprint | resources.PostProcess }} {{ $masonry = $masonry | minify | fingerprint | resources.PostProcess }}
{{ end }} {{ end }}
<script src="{{ $masonry.RelPermalink }}"></script> <script src="{{ $masonry.RelPermalink }}" integrity="{{ $masonry.Data.Integrity }}"></script>
{{ $imagesloaded := resources.Get "js/imagesloaded.min.js" }} {{ $imagesloaded := resources.Get "js/imagesloaded.min.js" }}
{{ if hugo.IsProduction }} {{ if hugo.IsProduction }}
{{ $imagesloaded = $style | minify | fingerprint | resources.PostProcess }} {{ $imagesloaded = $imagesloaded | minify | fingerprint | resources.PostProcess }}
{{ end }} {{ end }}
<script src="{{ $imagesloaded.RelPermalink }}"></script> <script src="{{ $imagesloaded.RelPermalink }}" integrity="{{ $imagesloaded.Data.Integrity }}"></script>
<meta name="robots" content="noai"> <meta name="robots" content="noai">
</head> </head>