-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (77 loc) · 2.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>Data Scatterplot App</title>
<link rel="icon" href="assets/img/KBase_favicon.ico" type="image/x-icon">
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="assets/css/identity.css" rel="stylesheet">
<link href="assets/css/kbase-common.css" rel="stylesheet">
<style type="text/css">
body {
/* padding to make room for the fixed nav bar,
modify in css as needed. */
padding-top: 60px;
}
</style>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<a href="http://www.kbase.us/labs/"><img class="logo" src="assets/img/labs_icon.png" width="46"></a>
<a class="brand">KBase Labs App</a>
<ul class="nav">
<li class="active"><a>Button 1</a></li>
<li><a>Button 2</a></li>
<li><a href="#" class="dropdown-toggle" data-toggle="dropdown">
Dropdown
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>foo</li>
<li>bar</li>
</ul>
</li>
</ul>
<ul class="nav" style="float:right;">
<li><a>Sign In<span id="counter"></span></a></li>
</ul>
</div>
</div>
<div class="container">
<div class="hero-unit" >
<div class="row">
<div class="span5">
<img src="assets/img/default_splash.png" />
</div>
<div class="span5">
<h2>A simple splash page for a KBase Labs application.</h2>
<button class="btn btn-primary btn-large" onclick="parent.location='DataScatter.html'">Get started!</button>
</div>
</div>
</div>
<div class="row">
<div class="span6">
<h3>Credits</h3>
<p>
The genome info browser was developed by the KBase Team.<br/>
For questions and comments email <a href="mailto:[email protected]">[email protected]</a>
</p>
<p>
This project relies on user input and testing, so please contact us with any suggestions or comments.
</p>
</div>
<div class="span3">
<h3>Related Links</h3>
<a href="http://www.kbase.us">KBase Homepage</a><br/>
<a href="http://www.kbase.us/labs">KBase Labs</a><br/>
<a href="http://www.kbase.us/developer-zone">KBase Developer Zone</a><br/>
</div>
<div class="span3">
<h3>Documentation</h3>
Docs link goes *here*
</div>
</div>
</div>
</body>
</html>