Adding matomo

This commit is contained in:
2020-07-24 14:20:48 +01:00
parent 78641f4935
commit bde22342b4
2 changed files with 16 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
{{ partial "head.html" . }}
{{ partial "schema.html" . }}
{{ partial "matomo.html" }}
</head>
<body>

View File

@@ -0,0 +1,15 @@
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//matomo.panaetius.co.uk/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '2']);
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>
<!-- End Matomo Code -->