-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (40 loc) · 1.25 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
<!doctype html>
<html lang="zh-hans">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Online CustomSkinLoader configuration editor."
/>
<title>CustomSkinLoader GUI</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/shoelace/shoelace.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/themes/dark.css"
/>
<link rel="stylesheet" href="./src/styles.css" />
<link
rel="preload"
as="style"
href="https://cdn.jsdelivr.net/npm/[email protected]/styles/atom-one-light.css"
/>
<link
rel="preload"
as="style"
href="https://cdn.jsdelivr.net/npm/[email protected]/styles/atom-one-dark.css"
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script
type="module"
src="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/shoelace/shoelace.esm.js"
></script>
<script type="module" src="./src/index.ts"></script>
</body>
</html>