forked from AlistGo/alist-web
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
50 lines (49 loc) · 1.52 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
<!doctype html>
<html lang="zh-CN" translate="no">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="notranslate" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="referrer" content="same-origin" />
<meta name="apple-mobile-web-app-title" content="甜蜜云" />
<meta name="application-name" content="甜蜜云" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<link
rel="apple-touch-icon"
sizes="512x512"
href="images/apple-touch-icon.png"
/>
<link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#5bbad5" />
<link rel="manifest" href="static/manifest.json" />
<meta
name="theme-color"
content="#e8f0fa"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#0c141e"
media="(prefers-color-scheme: dark)"
/>
<!-- customize head -->
<title>Loading...</title>
<script>
window.ALIST = {
cdn: undefined,
monaco_cdn: undefined,
base_path: undefined,
api: undefined,
main_color: undefined,
}
window.__dynamic_base__ = window.ALIST.cdn || ""
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/main.tsx" type="module"></script>
<canvas id="canvas-basic"></canvas>
<!-- customize body -->
</body>
</html>