-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.78 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.78 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
49
50
51
52
53
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Node Book</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="description" content="Node Book">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel='icon' href='https://img.upyun.zzming.cn/icon/nodebook.ico' type='image/x-icon'/>
<link rel="stylesheet" href="css/vue.min.css">
<link rel="stylesheet" href="css/docs.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'NodeBook',
repo: 'https://github.com/zzmgoing/nodebook',
themeColor: '#3c6ea8',
loadNavbar: true,
loadSidebar: true,
autoHeader: true,
maxLevel: 3,
subMaxLevel: 3,
auto2top: true,
topMargin: 17,
executeScript: true,
formatUpdated: '{YYYY}-{MM}-{DD} {HH}:{mm}',
notFoundPage: true,
externalLinkTarget: '_blank',
noEmoji: true,
search: {
paths: 'auto',
placeholder: '搜索',
noData: '没有结果',
depth: 3
}
};
</script>
<script src="js/docsify.min.js"></script>
<script src="js/docsify-copy-code.js"></script>
<script src="js/docsify-pagination.min.js"></script>
<script src="js/plugins/search.min.js"></script>
<script src="js/plugins/auto-add-update-time.js"></script>
<script src="js/plugins/anchor-2-title.js"></script>
<script src="js/plugins/prism-bash.min.js"></script>
<script src="js/plugins/prism-sql.min.js"></script>
<script src="js/plugins/prism-php.min.js"></script>
<script src="js/plugins/prism-json.min.js"></script>
<script src="js/plugins/prism-java.min.js"></script>
<script src="js/plugins/zoom-image.min.js"></script>
</body>
</html>