21 Zeilen
1.021 B
HTML
21 Zeilen
1.021 B
HTML
|
{{- if .enable -}}
|
||
|
{{- /* Google Analytics */ -}}
|
||
|
{{- with .google.id -}}
|
||
|
<script type="text/javascript">
|
||
|
window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());
|
||
|
gtag('config', '{{ . }}'{{ if $.google.anonymizeIP }}, { 'anonymize_ip': true }{{ end }});
|
||
|
</script>
|
||
|
{{- printf "https://www.googletagmanager.com/gtag/js?id=%v" . | dict "async" true "source" | partial "plugin/script.html" -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- /* Fathom Analytics */ -}}
|
||
|
{{- with .fathom.id -}}
|
||
|
<script type="text/javascript">
|
||
|
window.fathom=window.fathom||function(){(fathom.q=fathom.q||[]).push(arguments);};
|
||
|
fathom('set', 'siteId', '{{ . }}');
|
||
|
fathom('trackPageview');
|
||
|
</script>
|
||
|
{{- dict "source" ($.fathom.server | default "cdn.usefathom.com" | printf "https://%v/tracker.js") "async" true "attr" "id=fathom-script" | partial "plugin/script.html" -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|