advent22/ui/public/index.html

41 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2022-10-28 00:14:20 +00:00
<!DOCTYPE html>
<html lang="">
<head>
2024-08-27 00:25:42 +00:00
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
2022-10-28 00:14:20 +00:00
<title><%= htmlWebpackPlugin.options.title %></title>
2023-11-27 18:52:00 +00:00
<!-- Matomo -->
<script>
2024-08-27 00:25:42 +00:00
let _paq = (window._paq = window._paq || []);
2023-11-27 18:52:00 +00:00
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
2024-08-27 00:25:42 +00:00
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
2023-11-27 18:52:00 +00:00
(function () {
const u = "https://stats.kiwi.lenaisten.de/";
2024-08-27 00:25:42 +00:00
_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);
2023-11-27 18:52:00 +00:00
})();
</script>
<!-- End Matomo Code -->
2022-10-28 00:14:20 +00:00
</head>
<body>
<noscript>
2024-08-27 00:25:42 +00:00
<strong
>Es tut uns leid, aber <%= htmlWebpackPlugin.options.title %>
funktioniert nicht richtig ohne JavaScript. Bitte aktivieren Sie es, um
fortzufahren.</strong
>
2022-10-28 00:14:20 +00:00
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>