-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
84 lines (83 loc) · 2.95 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AliOS Things</title>
<link rel="icon" href="_media/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="keywords" content="iot,rtos,os,alios,light,github,component,mesh,things,internet">
<meta name="description" content="Alibaba's IoT version of OS comes from AliOS family.">
<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="_styles/vue.css" title="vue">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/dark.css" title="dark" disabled>
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/buble.css" title="buble" disabled>
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/pure.css" title="pure" disabled>
<!--
<link rel="stylesheet" href="//unpkg.com/docsify-copy-code/styles.css">
-->
<style>
nav.app-nav li ul {
min-width: 100px;
}
</style>
</head>
<body>
<div id="app">Loading ...</div>
<script>
window.$docsify = {
repo: 'https://github.com/alibaba/AliOS-Things',
alias: {
},
auto2top: true,
coverpage: ['/', '/zh-cn/'],
executeScript: true,
loadSidebar: true,
loadNavbar: true,
mergeNavbar: true,
maxLevel: 4,
subMaxLevel: 2,
name: 'AliOS Things',
search: {
noData: {
'/': 'No results!',
'/zh-cn/': '没有结果!',
'/de-de/': 'Keine Ergebnisse!'
},
paths: 'auto',
placeholder: {
'/': 'Search',
'/zh-cn/': '搜索',
'/de-de/': 'Suche'
}
},
formatUpdated: '{YYYY}-{MM}-{DD} {HH}:{mm}',
plugins: [
//window.DocsifyCopyCodePlugin.init(),
function (hook, vm) {
hook.beforeEach(function (html) {
var url = 'https://github.com/aliosthings/aliosthings.github.io/blob/master/' + vm.route.file
var editHtml = '[:memo: Edit this page](' + url + ')\n'
var aosHtml = '[AliOS Things](https://github.com/alibaba/AliOS-Things) Team.\n'
return '_Last modified {docsify-updated}_ ' +
editHtml +
html +
'\n----\n' +
'Crafted with :heart: by ' +
aosHtml
})
}
]
}
</script>
<!--
<script src="//unpkg.com/docsify-copy-code/index.js"></script>
-->
<script src="//unpkg.com/vue/dist/vue.min.js"></script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-markdown.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-nginx.min.js"></script>
</body>
</html>