aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/head/js.html
blob: f4dc60ee0bf19c16c7f8642add4af138b22aa5dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{- with resources.Get "js/main.js" }}
  {{- if eq hugo.Environment "development" }}
    {{- with . | js.Build }}
      <script src="{{ .RelPermalink }}"></script>
    {{- end }}
  {{- else }}
    {{- $opts := dict "minify" true }}
    {{- with . | js.Build $opts | fingerprint }}
      <script src="{{ .RelPermalink }}" integrity="{{- .Data.Integrity }}" crossorigin="anonymous"></script>
    {{- end }}
  {{- end }}
{{- end }}
<script src="/js/bootstrap.bundle.min.js"></script>