summaryrefslogtreecommitdiff
path: root/layouts/partials/head/js.html
blob: 18fe84291aea2d9375a78e1a0ee6b78c3475793e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{- 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 }}