-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (64 loc) · 2.4 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
<!html>
<head>
<title>Triplett Lab @ University of Florida</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
.scientist-background {
background: url('/scientist2.jpg');
background-repeat: no-repeat;
background-size: 100%;
background-position: -25px -25px 0 0;
}
.scientist-background h1 {
color: #ddd;
}
.scientist-background h3 {
color: #eee;
}
.header-shadow {
text-shadow: 0px 0px 1px #bbb;
}
</style>
</head>
<body>
<div class="jumbotron scientist-background">
<div class="container">
<h1 class="header-shadow">Triplett Lab</h1>
<h3 class="header-shadow">University of Florida, Gainesville, FL</h3>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="panel panel-default panel-success">
<div class="panel-heading">
<h3 class="panel-title panel-success">Public</h3>
</div>
<div class="panel-body">
<a href="https://github.com/triplett" class="btn btn-default btn-lg btn-success">Software</a>
<a href="http://scholar.google.com/scholar?hl=en&as_sdt=0,10&q=%22Eric+W.+Triplett%22&scisbd=1" class="btn btn-default btn-lg btn-primary">Publications</a>
<a href="http://greenhouse.heyaudy.com" class="btn btn-default btn-lg btn-info">Greenhouse Status</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="panel panel-default panel-warning">
<div class="panel-heading">
<h3 class="panel-title panel-success">Intranet</h3>
</div>
<div class="panel-body">
<a href="http://triplab.ad.ufl.edu:2500" class="btn btn-default btn-lg btn-warning">Wiki</a>
<a href="ftp://triplab.ad.ufl.edu" class="btn btn-default btn-lg btn-warning">FTP</a>
<a href="http://triplab.ad.ufl.edu:9292" class="btn btn-default btn-lg btn-warning">Sequence Repository</a>
</div>
</div>
</div>
</div>
</body>
</html>