-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
60 lines (58 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Megalo -- 基于 Vue.js 的小程序框架</title>
<meta name="baidu-site-verification" content="t0rOPjiSlh" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Megalo -- 基于 Vue.js 的小程序框架,支持 微信小程序 百度智能小程序 支付宝小程序">
<meta name="keywords" content="Megalo, Vue.js, 小程序框架, 微信小程序, 百度智能小程序, 支付宝小程序, 官方文档">
<meta name="og:title" property="og:title" content="Megalo -- 基于 Vue.js 的小程序框架">
<meta name="og:description" property="og:description" content="Megalo -- 基于 Vue.js 的小程序框架,支持 微信小程序 百度智能小程序 支付宝小程序">
<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="icon" href="/static/megalo.png" type="image/x-icon" />
</head>
<body>
<h1 style="font-size: 0;">Megalo -- 基于 Vue.js 的小程序框架,支持 微信小程序 百度智能小程序 支付宝小程序</h1>
<style>
.app-name-link > img {
width: 70px;
}
</style>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Megalo',
repo: 'https://github.com/kaola-fed/megalo',
loadSidebar: true,
loadNavbar: true,
alias: {
'/.*/_sidebar.md': '/_sidebar.md',
'/.*/_navbar.md': '/_navbar.md'
},
subMaxLevel: 2,
auto2top: true,
coverpage: true,
logo: 'static/megalo.png',
themeColor: '#359e6e',
search: {
noData: '找不到结果',
paths: 'auto',
placeholder: '搜索'
},
plugins: [
function(hook, vm) {
hook.beforeEach(function (html) {
var url = 'https://github.com/kaola-fed/megalo-docs/tree/master/' + vm.route.file
var editHtml = '[📝 EDIT DOCUMENT](' + url + ')\n'
return html + '\n\n---\n' + editHtml
})
}
]
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
</body>
</html>