This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (63 loc) · 2.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NorthStarCN Wiki文档</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="keywords" content="Wiki,NorthStarCN,NorthStarCN Wiki,R2NorthStarCN,Titanfall 2,Titanfall,Modify,Chinese,Respawn,Entertainment,泰坦陨落,泰坦陨落2,泰坦天降,泰坦天降2,北极星,北极星CN,NS,NSCN,文档">
<meta name="description" content="NorthStarCN 官方Wiki百科网站">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<!-- 设置浏览器图标 -->
<link rel="icon" href="/favicon.png" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon" />
<!-- 默认主题 -->
<link rel="stylesheet" href="/dependence/vue.css">
</head>
<body>
<!-- 定义加载时候的动作 -->
<div id="app">加载中...</div>
<script>
window.$docsify = {
// 项目名称
name: 'NorthStarCN Wiki文档',
// 侧边栏的NorthStarCN Logo图标
logo: '/assets/wide-banner.png',
// 仓库地址,点击右上角的Github章鱼猫图标会跳转到此地址
repo: 'https://github.com/R2NorthstarCN/',
// 启用侧边栏,作为Wiki的目录
loadSidebar: true,
// 侧边栏文件,默认加载的是项目根目录下的_sidebar.md文件
loadSidebar: 'sidebar.md',
// 不启用顶部导航栏,没啥用
loadNavbar: false,
// 启用封面
coverpage: true,
// 最大支持渲染的标题层级
maxLevel: 5,
// 自定义侧边栏后默认不会再生成目录,设置生成目录的最大层级(文档建议配置为2-4)
subMaxLevel: 4,
// 移动小屏设备(手机等)下合并导航栏到侧边栏
mergeNavbar: true,
// 封面文件
coverpage: 'coverpage.md',
// 404页面
notFoundPage: '404.md',
// 启用底部信息
loadFooter: true,
// 加载footer.md
loadFooter: 'footer.md',
}
</script>
<!-- docsify所需的js依赖 -->
<script src="/dependence/docsify.min.js"></script>
<!-- emoji表情支持js -->
<script src="/dependence/emoji.min.js"></script>
<!-- 分页导航插件 -->
<script src="/dependence/docsify-pagination.min.js"></script>
<!--在所有的代码块上添加一个简单的Copy to clipboard按钮,方便大伙从文档中复制代码-->
<script src="/dependence/docsify-copy-code.min.js"></script>
<!-- 底部信息插件 -->
<script src="/dependence/docsify-footer.min.js"></script>
</body>
</html>