-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·57 lines (42 loc) · 2.04 KB
/
index.html
File metadata and controls
executable file
·57 lines (42 loc) · 2.04 KB
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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Sencha Application Shell</title>
<link rel="stylesheet" href="lib/touch/resources/css/sencha-touch.css" type="text/css">
<link rel="stylesheet" href="resources/css/index.css" type="text/css">
</head>
<body>
<script type="text/javascript" src="lib/touch/sencha-touch-debug.js"></script>
<div id="sencha-app">
<script type="text/javascript" src="app/routes.js"></script>
<script type="text/javascript" src="app/app.js"></script>
<!-- Place your view files here -->
<div id="sencha-views">
<script type="text/javascript" src="app/views/Viewport.js"></script>
<script type="text/javascript" src="app/views/Navigation.js"></script>
<!-- Cards -->
<script type="text/javascript" src="app/views/TouchEvents.js"></script>
<script type="text/javascript" src="app/views/Home.js"></script>
<script type="text/javascript" src="app/views/SimpleForm.js"></script>
<script type="text/javascript" src="app/views/ExampleList.js"></script>
</div>
<!-- Place your model files here -->
<div id="sencha-models">
<script type="text/javascript" src="app/models/ExampleModel.js"></script>
</div>
<!-- Place your controller files here -->
<div id="sencha-controllers">
<script type="text/javascript" src="app/controllers/Logger.js"></script>
<script type="text/javascript" src="app/controllers/Navigation.js"></script>
</div>
</div>
<div id="app-content" style="display:none;">
<!-- Simple example of some static html for Home.js 'contentEl' -->
<div id="home-content">
<h1>Sencha Application Shell</h1>
<p>Maecenas hendrerit sem et nunc tristique pellentesque. Sed aliquam sem vitae velit euismod non lacinia metus venenatis. Morbi arcu est, accumsan sit amet pellentesque vel, aliquet ut nunc.</p>
</div>
</div>
</body>
</html>