added matomo

This commit is contained in:
Eorn 2020-05-13 09:48:01 +02:00
parent d3984ef059
commit b2fa6a02ee
3 changed files with 22 additions and 3 deletions

View file

@ -8,9 +8,6 @@
</div>
</footer>
{{ if .Site.Params.matomoAnalytics }}
{{- partial "analytitcs/matomo" . -}}
{{ end }}
</body>
</html>

View file

@ -27,6 +27,10 @@
<link rel="canonical" href="{{ .Permalink }}">
{{ if .Site.Params.matomoAnalytics }}
{{- partial "matomo" . -}}
{{ end }}
</head>
<body>

View file

@ -0,0 +1,18 @@
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="{{- .Site.Params.matomoAnalytics.rootURL -}};
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '{{- .Site.Params.matomoAnalytics.siteID -}}']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="{{- .Site.Params.matomoAnalytics.rootURL -}}/matomo.php?idsite={{- .Site.Params.matomoAnalytics.siteID -}}&amp;rec=1" style="border:0;" alt="" /></p></noscript>
<!-- End Matomo Code -->