feat: add analytics
This commit is contained in:
parent
aa7c1411ae
commit
b51847da06
|
@ -19,7 +19,26 @@ const { view, title } = Astro.props;
|
||||||
name="description"
|
name="description"
|
||||||
content="Access the open, user-owned web with Lume Web, and make it yours"
|
content="Access the open, user-owned web with Lume Web, and make it yours"
|
||||||
/>
|
/>
|
||||||
<meta name="keywords" content="Web3 Extension, web3 browser, Lume Web, Web3, dWeb, p2p, handshake, eth, ethereum, ipfs, open web, privacy, decentralization, blockchain" />
|
<meta name="keywords"
|
||||||
|
content="Web3 Extension, web3 browser, Lume Web, Web3, dWeb, p2p, handshake, eth, ethereum, ipfs, open web, privacy, decentralization, blockchain"/>
|
||||||
|
<!-- 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 = "//piwiki.lumeweb.com/";
|
||||||
|
_paq.push(['setTrackerUrl', u + 'matomo.php']);
|
||||||
|
_paq.push(['setSiteId', '2']);
|
||||||
|
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
|
||||||
|
g.async = true;
|
||||||
|
g.src = u + 'matomo.js';
|
||||||
|
s.parentNode.insertBefore(g, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<!-- End Matomo Code -->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<Navbar view={view} client:load/>
|
<Navbar view={view} client:load/>
|
||||||
|
|
Loading…
Reference in New Issue