summaryrefslogtreecommitdiff
path: root/layouts/partials/head/js.html
blob: a1d84ae38044772d39906a04596cea30e7c12796 (plain)
1
2
3
4
5
6
7
8
{{- with resources.Get "js/main.js" }}
    {{- $opts := dict "minify" true }}
    {{- with . | js.Build $opts | fingerprint }}
        <script src="{{ .RelPermalink }}" integrity="{{- .Data.Integrity }}"
            crossorigin="anonymous">
        </script>
    {{- end }}
{{- end }}