blob: 1f5983a36ab6122402ed27fa237542e4d3191f73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{{- if or (eq (getenv "HUGO_ENV") "production") (eq site.Params.env "production") }}
{{- with site.GoogleAnalytics -}}
{{- $ga := resources.Get "js/ga.js" | minify -}}
{{- if not site.Params.assets.disable_fingerprinting -}}
{{- $ga = $ga | fingerprint -}}
<script src="{{ $ga.RelPermalink }}" integrity="{{ $ga.Data.Integrity }}"></script>
{{- else -}}
<script src="{{ $ga.RelPermalink }}"></script>
{{- end -}}
{{- end -}}
{{- end -}}
|