-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 1.79 KB
/
Copy pathindex.html
File metadata and controls
61 lines (61 loc) · 1.79 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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Chirisy 的个人网站</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Chirisy 的个人网站,记录技术笔记、项目实践和学习教程。">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="assets/docsify/vue.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="app">加载中...</div>
<script>
window.$docsify = {
name: 'Chirisy',
repo: 'Chirisy/Chirisy.github.io',
homepage: 'README.md',
maxLevel: 4,
// loadSidebar: true,
loadNavbar: true,
// relativePath: true,
alias: {
'/.*/_navbar.md': '/_navbar.md'
},
subMaxLevel: 2,
auto2top: true,
notFoundPage: true,
mergeNavbar: true,
search: {
paths: 'auto',
placeholder: '🔍 搜索',
noData: '😒 找不到结果',
// Headline depth, 1 - 6
depth: 6,
maxAge: 86400000, // timeout
},
footer: {
copy: 'Make each day count And Towards happiness ',
pre: '<hr/>',
style: 'text-align: left;',
},
copyCode: {
buttonText: '复制',
errorText: '复制失败',
successText: '已复制'
},
pagination: {
previousText: '上一页',
nextText: '下一页',
crossChapter: true,
crossChapterText: true
}
}
</script>
<script src="assets/docsify/docsify.min.js"></script>
<script src="assets/docsify/search.min.js"></script>
<script src="assets/docsify/docsify-copy-code.min.js"></script>
<script src="assets/docsify/docsify-pagination.min.js"></script>
</body>
</html>