advent22/ui/index.html

40 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2026-02-21 19:24:09 +00:00
<!doctype html>
<html lang="">
<head>
2026-02-21 19:24:09 +00:00
<meta charset="UTF-8" />
<!-- <meta http-equiv="X-UA-Compatible" content="IE=edge" /> -->
2026-02-21 19:24:09 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<title><%= title %></title>
<!-- Matomo -->
<script>
let _paq = (window._paq = window._paq || []);
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function () {
const u = "https://stats.kiwi.lenaisten.de/";
_paq.push(["setTrackerUrl", u + "matomo.php"]);
_paq.push(["setSiteId", "10"]);
const 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>
<body>
<noscript>
<strong
>Es tut uns leid, aber <%= title %> funktioniert nicht richtig ohne JavaScript. Bitte
aktivieren Sie es, um fortzufahren.</strong
>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>