-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (35 loc) · 1.39 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Metronic Vue Demo" />
<link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700">
<link rel="stylesheet" href="/splash-screen.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Metronic | Vue Demo</title>
</head>
<body class="page-loading">
<!--begin::Theme mode setup on page load-->
<script>
let themeMode = "system";
if (localStorage.getItem("kt_theme_mode_value")) {
themeMode = localStorage.getItem("kt_theme_mode_value");
}
if (themeMode === "system") {
themeMode = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
}
document.documentElement.setAttribute("data-bs-theme", themeMode);
</script>
<!--end::Theme mode setup on page load-->
<div id="app"></div>
<!--begin::Loading markup-->
<div id="splash-screen" class="splash-screen">
<img src="/media/logos/default-dark.svg" class="dark-logo" alt="Metronic dark logo" />
<img src="/media/logos/default.svg" class="light-logo" alt="Metronic light logo" />
<span>Loading ...</span>
</div>
<!--end::Loading markup-->
<script type="module" src="/src/main.ts"></script>
</body>
</html>