2020-11-09 10:26:56 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
2023-11-06 15:28:26 +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" />
|
2025-03-31 16:33:54 +02:00
|
|
|
<link rel="icon" id="favicon" href="/favicon.ico" />
|
|
|
|
|
<title></title>
|
2025-05-06 09:27:53 +02:00
|
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
2024-01-15 17:38:37 +02:00
|
|
|
<link rel="apple-touch-icon" href="./icons/icon-72x72.png" sizes="72x72" />
|
|
|
|
|
<link rel="apple-touch-icon" href="./icons/icon-96x96.png" sizes="96x96" />
|
|
|
|
|
<link rel="apple-touch-icon" href="./icons/icon-128x128.png" sizes="128x128" />
|
|
|
|
|
<link rel="apple-touch-icon" href="./icons/icon-144x144.png" sizes="144x144" />
|
|
|
|
|
<link rel="apple-touch-icon" href="./icons/icon-152x152.png" sizes="152x152" />
|
|
|
|
|
<link rel="apple-touch-icon" href="./icons/icon-192x192.png" sizes="192x192" />
|
|
|
|
|
<link rel="apple-touch-icon" href="./icons/icon-384x384.png" sizes="384x384" />
|
|
|
|
|
<link rel="apple-touch-icon" href="./icons/icon-512x512.png" sizes="512x512" />
|
|
|
|
|
<link rel="manifest" href="./manifest.json" />
|
2025-06-12 12:00:43 +02:00
|
|
|
<script src="/lottie-player.js" type="module"></script>
|
2023-11-06 15:28:26 +00:00
|
|
|
<style>
|
|
|
|
|
#loader {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
z-index: 20;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2025-03-31 16:33:54 +02:00
|
|
|
<script type="module" src="/src/main.js"></script>
|
2020-11-09 10:26:56 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<noscript>
|
2023-11-06 15:28:26 +00:00
|
|
|
<strong
|
2025-03-31 16:33:54 +02:00
|
|
|
>We're sorry but the app doesn't work properly without JavaScript enabled. Please
|
2023-11-06 15:28:26 +00:00
|
|
|
enable it to continue.</strong
|
|
|
|
|
>
|
2020-11-09 10:26:56 +01:00
|
|
|
</noscript>
|
2023-11-06 15:28:26 +00:00
|
|
|
<div id="app">
|
|
|
|
|
<!-- To get rid of blank white screen, show loading indicator before Vue app is initialized -->
|
|
|
|
|
<!-- This loader will be replaced by the Vue component on mounted -->
|
|
|
|
|
<div id="loader">
|
|
|
|
|
<lottie-player autoplay loop mode="normal" src="./loader.json" style="width: 128px"> </lottie-player>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-05-06 09:27:53 +02:00
|
|
|
<div id="app2"></div>
|
2023-11-06 15:28:26 +00:00
|
|
|
|
2020-11-09 10:26:56 +01:00
|
|
|
<!-- built files will be auto injected -->
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|