-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.html
127 lines (123 loc) · 3.87 KB
/
main.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="author" content="Leo Wang" />
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-store, no-cache, must-revalidate, pre-check=0, post-check=0">
<meta http-equiv="expires" content="0">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<title>fc-fe 101</title>
<link rel="fluid-icon" href="src/resource/image/favicon.png">
<link rel="shortcut icon" type="image/ico" href="src/resource/image/favicon.ico" />
<link rel="stylesheet" type="text/css" href="src/resource/css/main.less">
<link rel="stylesheet" href="dep/fcui/0.0.2-beta.1/src/css/main.less"/>
<script src="dep/esl/2.0.6/esl.js"></script>
<script>
require.config({
'baseUrl': 'src',
'paths': { 'css': 'common/esl/css' },
'packages': [
{
'name': 'emc',
'location': '../dep/emc/1.0.0/src',
'main': 'main'
},
{
'name': 'eoo',
'location': '../dep/eoo/0.1.4/src',
'main': 'main'
},
{
'name': 'er',
'location': '../dep/er/3.1.0-rc.2/src',
'main': 'main'
},
{
'name': 'esui',
'location': '../dep/esui/3.1.0-beta.4/src',
'main': 'main'
},
{
'name': 'etpl',
'location': '../dep/etpl/3.0.1/src',
'main': 'main'
},
{
'name': 'fc-component-ria',
'location': '../dep/fc-component-ria/0.0.1-alpha.7/src',
'main': 'main'
},
{
'name': 'fc-core',
'location': '../dep/fc-core/0.0.1-alpha.7/src',
'main': 'main'
},
{
'name': 'fc-icon',
'location': '../dep/fc-icon/0.0.6/src',
'main': 'index'
},
{
'name': 'fc-view',
'location': '../dep/fc-view/0.0.1-alpha.18/src',
'main': 'main'
},
{
'name': 'fcui',
'location': '../dep/fcui/0.0.2-beta.1/src',
'main': 'main'
},
{
'name': 'mini-event',
'location': '../dep/mini-event/1.0.2/src',
'main': 'main'
},
{
'name': 'moment',
'location': '../dep/moment/2.7.0/src',
'main': 'moment'
},
{
'name': 'promise',
'location': '../dep/promise/1.0.2/src',
'main': 'main'
},
{
'name': 'underscore',
'location': '../dep/underscore/1.8.5/src',
'main': 'underscore'
},
{
'name': 'fc-storage',
'location': '../dep/fc-storage/0.0.1-alpha.6/src',
'main': 'main'
},
{
'name': 'jquery',
'location': '../dep/jquery/1.9.1/src',
'main': 'jquery.min'
},
{
'name': 'fc-ajax',
'location': '../dep/fc-ajax/0.0.1-alpha.8/src',
'main': 'main'
}
]
});
</script>
</head>
<body>
<div id="wrapper">
<fc-navigator></fc-navigator>
<div id="main">
</div>
</div>
<script src="dep/ace-builds/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
require(['main']);
</script>
</body>
</html>