-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (107 loc) · 3.18 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>v站首页</title>
<link rel="stylesheet" type="text/css" href="src/common/css/main.css" />
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-0/esl.js"></script>
<script>
require.config({
'baseUrl': 'src',
'paths': {},
'packages': [
{
'name': 'etpl',
'location': '../dep/etpl/2.1.0/src',
'main': 'main'
},
{
'name': 'hammer',
'location': '../dep/hammer/1.1.3/src',
'main': 'hammer'
},
{
'name': 'saber-ajax',
'location': '../dep/saber-ajax/0.1.5/src',
'main': 'ajax'
},
{
'name': 'saber-dom',
'location': '../dep/saber-dom/0.4.1/src',
'main': 'main'
},
{
'name': 'saber-emitter',
'location': '../dep/saber-emitter/0.5.0/src',
'main': 'emitter'
},
{
'name': 'saber-firework',
'location': '../dep/saber-firework/0.4.0/src',
'main': 'main'
},
{
'name': 'saber-lang',
'location': '../dep/saber-lang/0.4.0/src',
'main': 'main'
},
{
'name': 'saber-promise',
'location': '../dep/saber-promise/0.1.2/src',
'main': 'promise'
},
{
'name': 'saber-router',
'location': '../dep/saber-router/0.2.4/src',
'main': 'main'
},
{
'name': 'saber-run',
'location': '../dep/saber-run/0.2.0/src',
'main': 'main'
},
{
'name': 'saber-string',
'location': '../dep/saber-string/0.3.0/src',
'main': 'main'
},
{
'name': 'saber-tap',
'location': '../dep/saber-tap/0.1.2/src',
'main': 'tap'
},
{
'name': 'saber-uri',
'location': '../dep/saber-uri/0.1.2/src',
'main': 'main'
},
{
'name': 'saber-viewport',
'location': '../dep/saber-viewport/0.2.11/src',
'main': 'main'
},
{
'name': 'saber-widget',
'location': '../dep/saber-widget/0.3.0/src',
'main': 'main'
},
{
'name': 'est',
'location': '../dep/est/1.2.2/src'
}
]
});
</script>
</head>
<body>
<div id="viewport"></div>
<script>
require(['app'], function (app) {
app.init();
});
</script>
</body>
</html>