hugo-theme-fha/layouts/partials/bootstrap-js.html

13 lines
500 B
HTML
Raw Permalink Normal View History

2024-10-14 19:54:59 +00:00
{{- if eq $.Site.Params.includeBootstrapJs true -}}
{{- $bootstrapJs := "js/bootstrap.bundle.min.js" -}}
2024-09-01 14:27:23 +00:00
<script src="{{ $bootstrapJs | absURL }}"></script>
2024-10-14 19:54:59 +00:00
{{- if eq $.Site.Params.darklighttogglemode true -}}
{{- $colormodeJs := "js/color-mode.js" -}}
<script src="{{ $colormodeJs | absURL }}"></script>
{{- end -}}
{{- end -}}
{{- if eq .Site.Params.includejQueryJs true -}}
{{- $jqueryJs := "js/jquery-3.7.1.min.js" -}}
<script src="{{ $jqueryJs | absURL }}"></script>
{{- end -}}