-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (97 loc) · 3.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="./favicon.ico">
<title>NoUnityCN —— Unity国际版下载站</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">
<meta name="msvalidate.01" content="BE512C40332ECAE6B45DA15149C938AA" />
</head>
<body>
<div id="app">NoUnityCN —— Unity国际版下载站</div>
<script>
window.$docsify = {
// 网站名称
name: 'NoUnityCN',
// 侧边栏支持,_sidebar.md文件
loadSidebar: "_sidebar.md",
// 导航栏支持,_navbar.md文件
loadNavbar: "_navbar.md",
// 读取md文件中最大几级目录
subMaxLevel: 2,
// 切换页面后跳回页面顶部
auto2top: true,
// 点击标题后的跳转地址
nameLink: 'https://nounitycn.danke666.top',
// 默认页渲染源
homepage: 'index.md',
// 小屏设备下合并导航栏到侧边栏
mergeNavbar: true,
// 加载_404.md
notFoundPage: true,
// 滚动到锚点是与顶部的距离
topMargin: 90,
//插件设置
// -----------------------------------------------------
// 搜索配置
search: {
maxAge: 86400000,
paths: 'auto',
placeholder: '搜索',
noData: '找不到结果',
depth: 4,
hideOtherSidebarContent: false,
namespace: 'NoUnityCN'
},
// 分页导航插件
pagination: {
previousText: '下一系列版本',
nextText: '上一系列版本',
crossChapter: true,
crossChapterText: true
},
// 文本高亮
'flexible-alerts': {
style: 'flat',
note: {
label: "信息"
},
tip: {
label: "提示"
},
warning: {
label: "注意"
},
attention: {
label: "切记"
}
},
sidebarDisplayLevel: 2,
// 页脚信息插件
loadFooter: true,
loadFooter: '_footer.md'
}
</script>
<!-- docsify的js本体 -->
<script src="js/docsify/docsify.min.js"></script>
<!-- emoji表情插件 -->
<script src="js/docsify/plugins/emoji.min.js"></script>
<!-- 图片放大缩小插件 -->
<script src="js/docsify/plugins/zoom-image.min.js"></script>
<!-- 代码块复制插件 -->
<script src="js/docsify/plugins/copy-code.min.js"></script>
<!-- 搜索框插件 -->
<script src="js/docsify/plugins/search.min.js"></script>
<!-- 分页导航 -->
<script src="js/docsify/plugins/pagination.min.js"></script>
<!-- 文本高亮 -->
<script src="js/docsify/plugins/flexible-alerts.min.js"></script>
<!-- 侧边栏扩展与折叠 -->
<script src="js/docsify/plugins/sidebar-collapse.min.js"></script>
<!-- 页脚信息 -->
<script src="js/docsify/plugins/footer.min.js"></script>
<link rel="stylesheet" href="css/docsify/vue-themes.css">
</body>
</html>