generated from ZanzyTHEbar/SolidJSTauri
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
76 lines (76 loc) · 3.87 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- , shrink-to-fit=no -->
<!-- etvr -->
<base href="" />
<meta charset="utf-8" />
<title>ETVR Docs Site</title>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="application-name" content="ETVR" />
<meta name="apple-mobile-web-app-title" content="ETVR" />
<meta name="theme-color" content="#22222d" />
<meta name="msapplication-navbutton-color" content="#22222d" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="icon" href="images/logo.gif" />
<link rel="apple-touch-icon" href="images/logo.gif" />
<link rel="icon" href="images/transparent_logo.gif" />
<link rel="apple-touch-icon" href="images/transparent_logo.gif" />
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png" />
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#22222d" />
<link rel="shortcut icon" href="images/icons/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet" />
<meta property="og:site_name" content="ETVR" />
<meta property="og:title" content="ETVR" />
<meta itemprop="name" content="ETVR" />
<meta name="description" content="" />
<link
rel="stylesheet"
type="text/css"
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,700" />
<script
type="module"
src="https://unpkg.com/[email protected]/dist/web/install-button.js?module"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div class="main-div" id="root">
<div data-tauri-drag-region class="titlebar" id="titlebar">
<div class="titlebar-button" id="titlebar-minimize">
<svg width="1em" height="1em" viewBox="0 0 24 24">
<path fill="#ffffff" d="M20 14H4v-4h16" />
</svg>
</div>
<div class="titlebar-button" id="titlebar-maximize">
<svg width="1em" height="1em" viewBox="0 0 24 24">
<path fill="#ffffff" d="M4 4h16v16H4zm2 4v10h12V8z" />
</svg>
</div>
<div class="titlebar-button" id="titlebar-close">
<svg width="1em" height="1em" viewBox="0 0 24 24">
<path
fill="white"
d="M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12z" />
</svg>
</div>
</div>
</div>
<script type="module" src="./src/main.tsx"></script>
<script type="text/javascript" data-sqs-type="imageloader-bootstrapper">
;(function () {
if (window.ImageLoader) {
window.ImageLoader.bootstrap({}, document)
}
})()
</script>
</body>
</html>