-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (62 loc) · 2.91 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Sven 的个人笔记</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="This is my notes">
<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/lib/themes/vue.css">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/buble.css" title="buble">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/dark.css" title="dark">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/pure.css" title="pure"> -->
<!-- Theme: Simple (latest v0.x.x) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css" title="simple">
</head>
<body>
<div id="app">Please wait ...</div>
<!-- edit on github -->
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
<script>
window.$docsify = {
name: 'Sven\'s personal notes',
repo: 'https://github.com/SublimeCT/note',
subMaxLevel: 2,
noEmoji: true,
loadSidebar: true,
loadNavbar: true,
coverpage: true,
formatUpdated: '{YYYY}/{MM}/{DD} {HH}:{mm}',
plugins: [
EditOnGithubPlugin.create('https://github.com/SublimeCT/note/tree/master/', null, 'Edit on github')
],
// complete configuration parameters
search: {
maxAge: 86400000, // Expiration time, the default one day
placeholder: '搜索',
noData: '为找到结果',
// Headline depth, 1 - 6
depth: 4,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
}
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<!-- docsify-themeable (latest v0.x.x) -->
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></script>
<!-- search -->
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<!-- execute external script -->
<script src="//unpkg.com/docsify/lib/plugins/external-script.min.js"></script>
<!-- zoom image -->
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<!-- copy code -->
<script src="//unpkg.com/docsify-copy-code"></script>
<!-- languages highlight -->
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-php.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-typescript.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-rust.min.js"></script>
</body>
</html>