Skip to content

Commit 31cca7a

Browse files
authored
Add files via upload
1 parent e06a1d2 commit 31cca7a

File tree

5 files changed

+626
-0
lines changed

5 files changed

+626
-0
lines changed

404.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<html>
2+
<head>
3+
<title>ES6标准参考教程</title>
4+
<script>
5+
var loc = 'http://es6.ruanyifeng.com';
6+
var regex = /http:\/\/es6\.ruanyifeng\.com\/docs\/([^#]+)#(.+)/;
7+
var result = regex.exec(window.___location);
8+
if (result) {
9+
window.___location = loc + '/#docs/' + result[1] + '#' + result[2];
10+
} else {
11+
window.___location = loc;
12+
}
13+
</script>
14+
</head>
15+
<body>
16+
<p>redirecting...</p>
17+
</body>
18+
</html>

_navbar.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
- 基础
2+
* [主页](/README.md)
3+
4+
- 配置
5+
* [配置项](/configuration.md)
6+
* [主题](/themes.md)
7+

0 commit comments

Comments
 (0)