mirror of
https://github.com/WGDashboard/WGDashboard.git
synced 2026-08-03 22:42:59 +00:00
54 lines
1.8 KiB
HTML
54 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="application-name" content="WGDashboard">
|
|
<meta name="apple-mobile-web-app-title" content="WGDashboard">
|
|
<link rel="manifest" href="./json/manifest.json">
|
|
<link rel="icon" href="./img/Logo-2-512x512.png">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WGDashboard</title>
|
|
<base href="./">
|
|
<style>
|
|
#preloader{
|
|
width: 100vw; height: 100vh; display: flex
|
|
}
|
|
#preloader_placeholder{
|
|
width: 50px; height: 50px; background-color: #000; margin: auto;
|
|
animation: 3s ease-in-out fadeInPreloader infinite;
|
|
}
|
|
@keyframes fadeInPreloader {
|
|
0%{
|
|
opacity: 0;
|
|
}
|
|
50%{
|
|
opacity: 1;
|
|
}
|
|
100%{
|
|
opacity: 0;
|
|
}
|
|
}
|
|
</style>
|
|
<script>
|
|
const isViteDevMode = document.querySelector('script[src*="@vite/client"]') !== null;
|
|
const base = document.querySelector('base');
|
|
if (base && isViteDevMode) {
|
|
base.href = '/';
|
|
}
|
|
</script>
|
|
<script type="module" crossorigin src="./assets/index-DM7YJCOo.js"></script>
|
|
<link rel="stylesheet" crossorigin href="./assets/index-DOyBHXAH.css">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div id="preloader">
|
|
<div id="preloader_placeholder">
|
|
<img style="width: 100%" src="./img/Logo-2-128x128.png" alt="WGDashboard Admin" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|