You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
409 B
9 lines
409 B
{{ $bootstrap := resources.Get "js/bootstrap.bundle.min.js" }}
|
|
{{ $secureJS := slice $bootstrap | resources.Concat "bundle.js" | resources.Minify | resources.Fingerprint "sha512" }}
|
|
<script src="{{ $secureJS.RelPermalink }}" integrity="{{ $secureJS.Data.Integrity }}"></script>
|
|
|
|
{{ range $val := $.Site.Params.customJS }}
|
|
{{ if gt (len $val) 0 }}
|
|
<script src="{{ $val }}"></script>
|
|
{{ end }}
|
|
{{ end }}
|