aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/head/js.html
blob: bb53b7b7ca11bd4d867e1a3a9292b435ca775ed3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{- 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>
<script src="/js/fuse.min.js"></script>
<script src="/js/search.js"></script>