Files
hugo_bootstrap_theme/layouts/_partials/scripts.html
T
2026-06-16 20:54:02 +02:00

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" . }}