forked from larsgt/mobile_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
23 lines (23 loc) · 851 Bytes
/
sample.html
File metadata and controls
23 lines (23 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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="samplePage">
<div data-role="header" data-theme="b">
<h1>DNA Pipelines - Project management - Sample details</h1>
</div>
<div data-role="content" id = "sample">
</div>
<div id="navigation">
<a href="assets.html" data-role="button">View Assets</a>
</div>
</div>
</body>
</html>