-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (49 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nat.js - Native powers for building powerful weex apps</title>
<meta name="description" content="A powerful kit for adding native functionalities to your weex app. lightweight, cross-platform, customizable, open source.">
<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/themes/vue.css">
<link rel="stylesheet" href="_assets/css/nat.css">
</head>
<body>
<nav>
<a href="#/">EN</a>
<a href="#/zh-cn/">中文</a>
</nav>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Nat.js',
homepage: 'started.md',
auto2top: true,
coverpage: ['/', '/zh-cn/'],
loadSidebar: true,
maxLevel: 4,
subMaxLevel: 1,
themeColor: '#1F7AFB',
repo: 'https://github.com/natjs/nat',
ga: 'UA-102587436-2',
search: {
placeholder: {
'/zh-cn/': '键入搜索',
'/': 'Type to search'
},
noData: {
'/zh-cn/': '找不到结果',
'/': 'No Results'
}
}
}
// PWA
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>
</body>
</html>