forked from geekzy/xycal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1.53 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
<!doctype html>
<html>
<head>
<title>Base App</title>
<script src="js/App.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
jQuery(document).bind("mobileinit", XY.Base.App.mobileInit);
jQuery(document).bind("pagechange", XY.Base.App.pageInit);
</script>
<script src="js/jquery/jquery.mobile-1.1.0.min.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="main" data-role="page" data-initjs="XY.Base.Main.pageInit">
<div data-role="header" data-position="inline">
<h1>Static XYCal</h1>
<a href="#" data-icon="gear" class="ui-btn-right nottyme">Click Me!</a>
</div>
<div data-role="content">
<div id="xycal-demo">
<ul style="display:none;">
<li data='{"date":"05/05/2012", "time":"10:15", "loc":"IT Dome", "cat":"fac", "title":"App Demo", "desc": "A Demo of Mobile App"}' />
<li data='{"date":"08/05/2012", "time":"15:40", "loc":"Univ. Gym", "cat":"stu", "title":"Workout", "desc": "Workout till drop"}' />
<li data='{"date":"21/05/2012", "time":"08:00", "loc":"Univ. Hall", "cat":"univ", "title":"Management Gathering", "desc": "Annual Management Gathering"}' />
<li data='{"date":"21/05/2012", "time":"12:00", "loc":"Food Court", "cat":"univ", "title":"Management Lunch", "desc": "Free Lunch for everybody at Food Court"}'/>
</ul>
</div>
</div>
</div>
</body>
</html>