add support for umami

This commit is contained in:
Jan Fader 2022-08-13 08:41:36 +02:00
parent d4ba47cd21
commit 005afbf045
No known key found for this signature in database
GPG Key ID: 1A6BDEFB0E27FA44
3 changed files with 13 additions and 0 deletions

View File

@ -16,6 +16,7 @@ Anubis is a simple minimalist theme for [Hugo blog engine](https://gohugo.io/).
- Mobile support - Mobile support
- Social icons - Social icons
- Google Analytics - Google Analytics
- Umami Analytics
- Comment systems: Disqus, ISSO, Utteranc.es, GraphComment - Comment systems: Disqus, ISSO, Utteranc.es, GraphComment
- RSS feeds - RSS feeds
- Related posts (Read Next section) - Related posts (Read Next section)
@ -119,6 +120,11 @@ params:
avatar: true # optional avatar: true # optional
avatar-bg: "#f0f0f0" # optional avatar-bg: "#f0f0f0" # optional
feed: false # optional feed: false # optional
UmamiAnalytics:
enabled: true # mandatory
dnt: true # optional
id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # mandatory
datacache: false # optional
graphcommentId: "" graphcommentId: ""
webmentions: webmentions:
url: https://yourdomain.com/webemntions/receive url: https://yourdomain.com/webemntions/receive

View File

@ -72,4 +72,8 @@
{{ template "_internal/google_analytics.html" . }} {{ template "_internal/google_analytics.html" . }}
{{ end }} {{ end }}
{{ if (.Site.Params.UmamiAnalytics.enabled ) }}
{{ partial "umami_analytics.html" . }}
{{ end }}
{{ partial "head-extra.html" . }} {{ partial "head-extra.html" . }}

View File

@ -0,0 +1,3 @@
{{ $dnt := .Site.Params.UmamiAnalytics.dnt | default "false" }}
{{ $datacache := .Site.Params.UmamiAnalytics.datacache | default "false" }}
<script async defer data-website-id="{{ .Site.Params.UmamiAnalytics.id }}" data-cache="{{ $datacache }}" data-do-not-track="{{ $dnt }}" src="https://statistics.faderweb.de/umami.js"></script>