15 lines
563 B
HTML
15 lines
563 B
HTML
<!-- Bootstrap Bundle JS (includes Popper.js) -->
|
|
{{ $bs := resources.Get "js/bootstrap.bundle.min.js" | fingerprint "sha512" }}
|
|
{{ if $bs }}
|
|
<script src="{{ $bs.RelPermalink }}" integrity="{{ $bs.Data.Integrity }}" crossorigin="anonymous"></script>
|
|
{{ end }}
|
|
|
|
<!-- Custom scripts -->
|
|
{{ $custom := resources.Get "js/main.js" }}
|
|
{{ if $custom }}
|
|
{{ $custom = $custom | fingerprint "sha512" }}
|
|
<script src="{{ $custom.RelPermalink }}" integrity="{{ $custom.Data.Integrity }}" crossorigin="anonymous"></script>
|
|
{{ end }}
|
|
|
|
{{ partial "scripts_extra.html" . }}
|