personal-website/layouts/partials/analytics.html
baalajimaestro ac55c01fb2
Track hugo.isproduction shortcut instead of the longer route
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
2022-11-16 21:17:11 +05:30

27 lines
894 B
HTML

{{ if hugo.IsProduction }}
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://counter.baalajimaestro.me/";
_paq.push(['setTrackerUrl', u+'86eff12f2496']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'dd168412e25a.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!-- Redirect for pages.dev -->
<script>
if (window.location.hostname !== "baalajimaestro.me" && window.location.hostname !== "www.baalajimaestro.me"){
window.location.replace('https://baalajimaestro.me' + window.location.pathname);
}
</script>
{{ end }}