index.html
1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<link rel="icon" href="/cnlive.ico" />
<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="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"
/>
</head>
<body>
<!-- 顶部导航 -->
<nav>
<a href="http://bj.gitlab.cnlive.com/cnlive_project/cnlive-community-web-vue">代码仓库</a>
<a href="http://test.community.cnlive.com/doc.html">接口API</a>
<a href="http://testweb.community.cnlive.com">中国网+智慧社区平台</a>
<a href="http://cnlive.com/">中国网传播</a>
</nav>
<div id="app"></div>
<script>
window.$docsify = {
name: "中国网+智慧社区平台", // 文档名
nameLink: 'http://testweb.community.cnlive.com', // 标题点击跳转链接
repo: "http://bj.gitlab.cnlive.com/cnlive_project/cnlive-community-web-vue.git",
topMargin: 90, // 锚点定位顶边距
subMaxLevel: 2, // 限制显示两级目录
auto2top: true, // 切换页面后跳到页面顶部
loadSidebar: true, // 加载侧边栏
autoHeader: true, // 加页面标题
alias: {
"/.*/_sidebar.md": "/_sidebar.md",
}, // 避免不必要的回退
coverpage: true, // 启用封面
onlyCover: false, // 只在访问首页时展示封面
// homepage: 'zh-cn/guide.md', // 指定首页
};
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
</body>
</html>