This commit is contained in:
CyC2018 2018-12-18 21:02:11 +08:00
parent 76ad497f7d
commit c9572bf2f6
8 changed files with 82 additions and 0 deletions

0
docs/.nojekyll Normal file
View File

15
docs/README.md Normal file
View File

@ -0,0 +1,15 @@
# Headline
> An awesome project.
```java
int a = 1;
```
# H1
## H2
### H3

15
docs/_coverpage.md Normal file
View File

@ -0,0 +1,15 @@
<img width="150px" src="_media/LogoMakr_1J56bI.png">
# CS-Notes
> Computer Sicence Learning Notes.
- Algorithm
- Computer Networks
- Operating System
- ...
[GitHub](https://github.com/CyC2018/CS-Notes)
<!-- ![color](#107ea485) -->

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

6
docs/_navbar.md Normal file
View File

@ -0,0 +1,6 @@
- Translations
- [:uk: English](/)
- [:cn: 中文](/zh-cn/)
- [:de: Deutsch](/de-de/)
- [:es: Spanish](/es/)
- [:ru: Russian](/ru/)

4
docs/_sidebar.md Normal file
View File

@ -0,0 +1,4 @@
- Getting started
- [README](README.md)
- [guide](guide.md)

1
docs/guide.md Normal file
View File

@ -0,0 +1 @@
# test

41
docs/index.html Normal file
View File

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<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/gitalk/dist/gitalk.css">
<script src="//unpkg.com/docsify/lib/plugins/gitalk.min.js"></script>
<script src="//unpkg.com/gitalk/dist/gitalk.min.js"></script>
</head>
<body>
<nav>
<a href="#/">Github</a>
</nav>
<div id="app"></div>
<script>
window.$docsify = {
name: 'CS-Notes',
repo: '',
loadSidebar: true,
subMaxLevel: 2,
coverpage: true
}
const gitalk = new Gitalk({
clientID: '0a3e1a4c29a4778f35f2',
clientSecret: '5bf2890d68acc32cbf8327924805a0b48e15f64c',
repo: 'test',
owner: 'CyC2018',
admin: ['CyC2018'],
distractionFreeMode: false
})
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
</body>
</html>