-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (59 loc) · 2.84 KB
/
index.html
File metadata and controls
64 lines (59 loc) · 2.84 KB
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link color="#18a058" href="./src/assets/logo.svg" rel="mask-icon">
<meta
content="width=device-width, height=device-height, interactive-widget=resizes-content, initial-scale=1.0, minimum-scale = 1, maximum-scale = 1, user-scalable = no, minimal-ui"
name="viewport" />
<meta content="AMLL TTML Tool" name="apple-mobile-web-app-title" />
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="#FFFFFF" media="(prefers-color-scheme: light)" name="apple-mobile-web-app-status-bar-style" />
<meta content="#101211" media="(prefers-color-scheme: dark)" name="apple-mobile-web-app-status-bar-style" />
<meta
content="default-src * data: blob: filesystem: about: ws: wss: ipc: 'unsafe-inline' 'unsafe-eval'; worker-src * data: blob: ; script-src * data: blob: 'unsafe-inline' 'unsafe-eval'; connect-src * ipc: data: blob: 'unsafe-inline'; img-src * data: blob: 'unsafe-inline'; frame-src * data: blob: ; style-src * data: blob: 'unsafe-inline'; font-src * data: blob: 'unsafe-inline';"
http-equiv="Content-Security-Policy" />
<link href="./apple-touch-icon.png" rel="apple-touch-icon">
<link href="./apple-touch-icon.png" rel="apple-touch-icon" sizes="76x76">
<link href="./apple-touch-icon.png" rel="apple-touch-icon" sizes="120x120">
<link href="./apple-touch-icon.png" rel="apple-touch-icon" sizes="152x152">
<link href="./favicon.ico" rel="icon" sizes="32x32">
<link href="./favicon.svg" rel="icon" sizes="any" type="image/svg+xml">
<link href="./site.webmanifest" rel="manifest">
<meta content="#FFFFFF" media="(prefers-color-scheme: light)" name="theme-color">
<meta content="#101211" media="(prefers-color-scheme: dark)" name="theme-color">
<title>AMLL TTML Tool</title>
<meta name="darkreader-lock">
<style>
* {
margin: 0;
box-sizing: border-box;
}
#root {
width: 100vw;
height: 100vh;
max-width: 100vw;
max-height: 100vh;
overflow: hidden;
}
@media (prefers-color-scheme: dark) {
#loading-holder {
background-color: #101211;
color: #fff;
}
}
</style>
</head>
<body>
<div id="root">
<div id="loading-holder"
style="display: flex; flex-direction: column; height: 100vh; text-align: center; align-items: center;justify-content: center;">
<div>AMLL TTML Tool 正在加载...</div>
<div>AMLL TTML Tool is loading...</div>
<div>工具资源较大,请稍等片刻...</div>
<div>Resource files are quite big, please be patient...</div>
</div>
</div>
<script defer src="/src/main.tsx" type="module"></script>
</body>
</html>