14 lines
560 B
HTML
14 lines
560 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 "}} |