forked from jrotty/jrotty.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.48 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
<!DOCTYPE html>
<html lang=zh>
<head>
<meta charset="UTF-8">
<link rel="icon" href="favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="keywords" content="typecho,theme,docs,文档,模板">
<meta name="description" content="Typecho Docs">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Typecho Docs</title>
<link rel="stylesheet" href="lib/vue.css">
<style>.sidebar-toggle {bottom: auto;top: 0;left: 300px;width: auto;}.close .sidebar-toggle {left: 0;}
@media screen and (max-width: 768px){
.sidebar-toggle {bottom: auto;top: 0;left: 0px;width: auto;}.close .sidebar-toggle {left: 300px;}
}
</style>
</head>
<body>
<nav>
<a href="http://typecho.org/" target="_blank">typecho</a>
<a href="http://zezeshe.com" target="_blank">Blog</a>
</nav>
<div id="app">Load...</div>
</body>
<script>
window.$docsify = {
name: 'Typecho',
homepage: 'index.md',
loadSidebar: 'sidebar.md',
subMaxLevel: 3,
auto2top: true,
formatUpdated: '{MM}/{DD} {HH}:{mm}',
search: {
noData: {
'/': '没有结果 :('
},
paths: 'auto',
placeholder: {
'/': '搜索'
}
},
}
</script>
<script src="lib/docsify.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-php.js"></script>
<script src="lib/search.min.js"></script>
</html>