-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
132 lines (121 loc) · 4.5 KB
/
about.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<!--- Change the title of the webpage in the <title> tag -->
<title>Microbe-ID | About</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="root">
<!-- Le styles, make sure that the Bootstrap_files folder is in the same directory than your homepage -->
<link href="Bootstrap_files/bootstrap.css" rel="stylesheet">
<link href="Bootstrap_files/phytophthora-lab.css" rel="stylesheet">
<style>
/* Sticky footer styles
-------------------------------------------------- */
html,
body {
height: 100%;
/* The html and body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#wrap {
min-height: 95%;
height: auto !important;
height: 95%;
/* Negative indent footer by it's height */
margin: 0 auto -70px;
}
/* Set the fixed height of the footer here */
#push,
#footer {
height: 120px;
}
#footer {
background-color: #f5f5f5;
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
#footer {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 20px;
}
}
#wrap > .container {
padding-top: 60px;
}
.container .credit {
margin: 20px 0;
}
code {
font-size: 80%;
}
</style>
<!-- Recalling stylesheets and icons. Once again, make sure that the Bootstrap_files folder is in the same directory than your homepage -->
<link href="Bootstrap_files/bootstrap-responsive.css" rel="stylesheet">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="img/customIcon.png">
</head>
<body>
<div id="wrap">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Names of the links are between the <a></a> tags. -->
<a class="brand" href="./index.html">Microbe-ID</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="./index.html"><a href="./index.html">Home</a></li>
<li><a href="./seq-id.html">Sequence-ID</a></li>
<li><a href="./geno-id.html">Genotype-ID</a></li>
<li><a href="./about.html">About</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<!--MICROBE-ID customization: Change the text here-->
<h1>About</h1>
<p>Add custom content here</p>
</div>
<div id="push"></div>
</div>
<div id="footer">
<div class="container">
<br>
<p>Add content here</p>
</div>
</div>
<!-- Le javascript files, they assure the functionality of the webpage and
are located in the Bootstrap_files folder
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="Bootstrap_files/jquery.js"></script>
<script src="Bootstrap_files/bootstrap-transition.js"></script>
<script src="Bootstrap_files/bootstrap-alert.js"></script>
<script src="Bootstrap_files/bootstrap-modal.js"></script>
<script src="Bootstrap_files/bootstrap-dropdown.js"></script>
<script src="Bootstrap_files/bootstrap-scrollspy.js"></script>
<script src="Bootstrap_files/bootstrap-tab.js"></script>
<script src="Bootstrap_files/bootstrap-tooltip.js"></script>
<script src="Bootstrap_files/bootstrap-popover.js"></script>
<script src="Bootstrap_files/bootstrap-button.js"></script>
<script src="Bootstrap_files/bootstrap-collapse.js"></script>
<script src="Bootstrap_files/bootstrap-carousel.js"></script>
<script src="Bootstrap_files/bootstrap-typeahead.js"></script>
<script src="Bootstrap_files/holder.js"></script>
</body>
</html>