-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (29 loc) · 897 Bytes
/
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
<!DOCTYPE html>
<html lang="cmn-Hans">
<head>
<meta charset="utf-8">
<title>Course Crawler</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="description" content="MOOC 课程下载">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<link rel="stylesheet" href="https://cdn.bootcss.com/docsify/4.6.10/themes/vue.css">
</head>
<body>
<nav>
<a href="mailto:[email protected]">联络我</a>
<a href="https://github.com/Foair/course-crawler">GitHub</a>
</nav>
<div id="app"></div>
<script>
window.$docsify = {
loadSidebar: true,
alias: {
"/.*/_sidebar.md": "/_sidebar.md"
},
name: "Course Crawler",
repo: "https://github.com/Foair/course-crawler"
}
</script>
<script src="https://cdn.bootcss.com/docsify/4.6.10/docsify.min.js"></script>
</body>
</html>