-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
75 lines (69 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Blinkload 用户文档</title>
<link rel="shortcut icon" href="/favicon.ico">
<link rel="bookmark" href="/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Blinkload Documents/用户文档">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
</head>
<body>
<nav>
<a href="https://ssr.to">官网</a>
<a href="https://ssr.to/user">用户中心</a>
</nav>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: '',
repo: '',
search: 'auto', // 默认值
search: [
'/', // => /README.md
'/panel'
],
// 完整配置参数
search: {
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
paths: 'auto', // or 'auto'
placeholder: 'Type to search',
// 支持本地化
placeholder: {
'/zh-cn/': '搜索',
'/': '搜索'
},
noData: 'No Results!',
// 支持本地化
noData: {
'/zh-cn/': '找不到结果',
'/': '找不到结果'
},
// 搜索标题的最大程级, 1 - 6
depth: 6
},
loadSidebar: true,
alias: {
'/.*/_sidebar.md': '/_sidebar.md'
},
name: 'Blinkload 用户文档',
themeColor: '#000000',
mergeNavbar: false,
plugins: [
function(hook){
hook.afterEach(function(html, next){
html = html.replace('{$DOMAIN}', window.location.host.split('.').splice(-2).join('.'))
next(html);
})
}
]
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script type="text/javascript"> window.$crisp=[];window.CRISP_WEBSITE_ID="487debd1-875b-4412-afa2-fff2f2724cce";(function(){ d=document;s=d.createElement("script"); s.src="https://client.crisp.chat/l.js"; s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})(); </script>
</body>
</html>