19 lines
673 B
HTML
19 lines
673 B
HTML
{{- with resources.Get "static/js/bcarlin.js" }}
|
|
{{- $opts := dict
|
|
"minify" (not hugo.IsDevelopment)
|
|
"sourceMap" (cond hugo.IsDevelopment "external" "")
|
|
"targetPath" "static/js/bcarlin.js"
|
|
}}
|
|
{{- with . | js.Build $opts }}
|
|
{{- if hugo.IsDevelopment }}
|
|
<script src="{{ .RelPermalink }}"></script>
|
|
{{- else }}
|
|
{{- with . | fingerprint }}
|
|
<script src="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"></script>
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if not hugo.IsDevelopment }}
|
|
<script defer data-domain="bcarlin.net" src="//stats.bcarlin.net/js/script.js"></script>
|
|
{{- end }}
|