-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
48 lines (47 loc) · 1.41 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8" />
<title>红石皮肤站手册</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<link rel="manifest" href="/manifest.json" />
<link rel="shortcut icon" href="/icon/icon.ico" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="红石皮肤站手册" />
<link rel="shortcut icon" sizes="152x152" href="/icon/icon.png" />
<link
rel="apple-touch-icon"
sizes="152x152"
href="/icon/icon.png"
/>
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify/themes/dark.css"
/>
</head>
<body>
<div id="app">请稍后....</div>
<script>
window.$docsify = {
name: "红石皮肤站帮助中心",
repo: "https://github.com/redstone-skin/help.mcskin.cn",
loadNavbar: true,
subMaxLevel: 4,
loadSidebar: true,
};
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- PWA Support -->
<script>
if (typeof navigator.serviceWorker !== "undefined") {
navigator.serviceWorker.register("sw.js");
}
</script>
</body>
</html>