forked from larsgt/mobile_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 796 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 796 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.templates/beta1/jquery.tmpl.js"></script>
<script src="application.js"></script>
<script src="template.js"></script>
</head>
<body>
<div data-role="page" data-theme="b" id="indexPage">
<div data-role="header" data-theme="b">
<h1>DNA Pipelines - Project management</h1>
</div>
<div data-role="content">
<ul data-role="listview" id="list"></ul>
</div>
</div>
<script>
init();
</script>
</body>
</html>