mirror of
https://github.com/GuerillaStudio/now-playing
synced 2025-01-04 17:01:57 +00:00
Add optional Umami tracking
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
2707ebb45a
commit
68c0e8f0f9
2 changed files with 7 additions and 1 deletions
|
@ -17,7 +17,7 @@ disableKinds = ["taxonomy"]
|
||||||
quality = 95
|
quality = 95
|
||||||
[security]
|
[security]
|
||||||
[security.funcs]
|
[security.funcs]
|
||||||
getenv = [ "^HUGO_", "CONTEXT", "URL", "BASE_URL" ]
|
getenv = [ "^HUGO_", "CONTEXT", "URL", "BASE_URL", "UMAMI_DOMAIN", "UMAMI_ID" ]
|
||||||
|
|
||||||
## Deploy into a Garage bucket at Deuxfleurs
|
## Deploy into a Garage bucket at Deuxfleurs
|
||||||
[[deployment.targets]]
|
[[deployment.targets]]
|
||||||
|
|
|
@ -13,6 +13,12 @@
|
||||||
<base href="{{ if getenv "CONTEXT" }}{{ cond (eq "production" (getenv "CONTEXT")) (getenv "URL") (getenv "DEPLOY_PRIME_URL") }}{{ else }}{{ $.Site.BaseURL }}{{ end }}">
|
<base href="{{ if getenv "CONTEXT" }}{{ cond (eq "production" (getenv "CONTEXT")) (getenv "URL") (getenv "DEPLOY_PRIME_URL") }}{{ else }}{{ $.Site.BaseURL }}{{ end }}">
|
||||||
<link rel="canonical" href="{{ .Permalink }}">
|
<link rel="canonical" href="{{ .Permalink }}">
|
||||||
|
|
||||||
|
|
||||||
|
{{ if (and (getenv "UMAMI_DOMAIN") (getenv "UMAMI_ID")) }}
|
||||||
|
<script defer src="https://{{ getenv "UMAMI_DOMAIN" }}/script.js" data-website-id="{{ getenv "UMAMI_ID" }}"></script>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/favicons/apple-touch-icon.png" | absURL }}">
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/favicons/apple-touch-icon.png" | absURL }}">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/favicons/favicon-32x32.png" | absURL }}">
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/favicons/favicon-32x32.png" | absURL }}">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/favicons/favicon-16x16.png" | absURL }}">
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/favicons/favicon-16x16.png" | absURL }}">
|
||||||
|
|
Loading…
Reference in a new issue