forked from larsgt/mobile_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsamples.html
More file actions
21 lines (21 loc) · 789 Bytes
/
samples.html
File metadata and controls
21 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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-add-back-btn="true" data-role="page" data-theme="b" id="samplesPage">
<div data-role="header" data-theme="b">
<h1>DNA Pipelines - Project management - Samples</h1>
</div>
<div data-role="content">
<ul data-role="listview" id="sampleList"></ul>
</div>
</div>
</body>
</html>