-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
49 lines (38 loc) · 1.98 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>Example Application</title>
<link rel="stylesheet" type="text/css" href="css/shared.css" />
<!-- ########### DEPENDENCIES ########### -->
<script src="phonegap.js"></script> <!-- this file does not exist locally, it is used by PhoneGap Build to add the phongap code -->
<script type="text/javascript" src="library/jquery-2.0.2.min.js"></script>
<script type="text/javascript" src="library/underscore-min_1.4.4.js"></script>
<script type="text/javascript" src="library/backbone-min_1.0.0.js"></script>
<!-- ########### APP FILES ########### -->
<script type="text/javascript" src="js/MyListItem/MyListItemModel.js"></script>
<script type="text/javascript" src="js/MyListItem/MyListItemCollection.js"></script>
<script type="text/javascript" src="js/MyListItem/MyListItemView.js"></script>
<script type="text/javascript" src="js/MyList/MyListModel.js"></script>
<script type="text/javascript" src="js/MyList/MyListView.js"></script>
<script type="text/javascript" src="js/ExampleApplication.js"></script>
<!-- ########### Templates used by backbone.js ########### -->
<script type="text/template" id="MyListView">
<header>
<h1>Example App v<%= version %></h1>
</header>
<p>This is a minimal test application written using backbone, underscore, and jQuery. And compiled with PhoneGap Build.</p>
<ul></ul>
</script>
<script type="text/template" id="MyListItemView">
<a href="<%= url %>"><%= title %></a>
</script>
</head>
<body onload="exampleApp.initialize()">
<div id="master_container"></div>
</body>
</html>