This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (72 loc) · 2.96 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
<!DocType HTML>
<html lang="zh-CN"><head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no" />
<title>BootEWA Web 组件库</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="library/BootEWA.css" />
<link rel="stylesheet"
href="https://cdn.bootcss.com/layer/3.1.0/theme/default/layer.css" />
<link rel="stylesheet"
href="https://cdn.bootcss.com/medium-editor/5.23.3/css/medium-editor.min.css" />
<link rel="stylesheet"
href="https://cdn.bootcss.com/medium-editor/5.23.3/css/themes/bootstrap.min.css" />
<link rel="stylesheet"
href="https://cdn.bootcss.com/medium-editor-insert-plugin/2.5.0/css/medium-editor-insert-plugin.min.css" />
<link rel="stylesheet"
href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet"
href="https://cdn.bootcss.com/highlight.js/9.12.0/styles/atom-one-dark.min.css" />
<link rel="stylesheet" href="page/index.css" />
<!--[if lte IE 9]>
<script src="//cdn.bootcss.com/html5-history-api/4.2.8/history.min.js"></script>
<![endif]-->
<script src="//cdn.bootcss.com/MutationObserver.js/0.3.2/mutationobserver.min.js"></script>
<script src="//cdn.bootcss.com/require.js/2.3.5/require.min.js"></script>
<script>
require.config({
baseUrl: 'library/',
paths: {
jquery:
'https://cdn.bootcss.com/jquery/3.3.1/jquery.min',
BootStrap:
'https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min',
marked:
'https://cdn.bootcss.com/marked/0.3.17/marked.min',
Layer:
'https://cdn.bootcss.com/layer/3.1.0/layer',
MediumEditor:
'../component/MediumEditor',
HighLight:
'https://cdn.bootcss.com/highlight.js/9.12.0/highlight.min'
},
shim: {
BootStrap: ['jquery']
}
});
</script>
<script src="page/index.js"></script>
</head><body>
<div data-href="component/NavBar.html?data=page/index.json" data-dark="true">
</div>
<!-- SPA Page Container -->
<div id="PageBox"></div>
<!-- Common Footer -->
<footer class="container-fluid">
<div class="row">
<div class="col-md-6">
©2017 <a href="https://tech-query.me/">TechQuery</a>
</div>
<div class="col-md-6">
Powered by
<a href="https://tech_query.oschina.io/easywebapp/">
EasyWebApp v4
</a>
&
<a href="http://v3.bootcss.com/">BootStrap v3</a>
</div>
</div>
</footer>
<!-- AJAX loading -->
<div data-href="component/Loading.html"></div>
</body></html>