-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (140 loc) · 5.14 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Tomato virome</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link href="http://cdn.rawgit.com/noelboss/featherlight/1.3.3/release/featherlight.min.css" type="text/css" rel="stylesheet" />
<!-- Optional theme -->
<link rel="stylesheet" href="bootstrap/css/bootstrap-theme.min.css">
<!-- JQuery -->
<script src="http://libs.baidu.com/jquery/2.1.3/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<!-- Google Analytics -->
<script src="bootstrap/analytics.js/analytics.js" type="text/javascript"></script>
<!-- Self defined footer CSS -->
<style type="text/css">
.footer {
background-color: #f2f2f2; <!--#e6e6e6-->
font-size: 12px;
height:100px;
position:fixed;
bottom: 0px;
left: 0;
right: 0;
}
.footer a:link,
.footer a:visited,
.footer a:hover {
color: #00004F;
text-decoration: none;
}
</style>
</head>
<body>
<div class=container>
<div class="col-md-10 col-md-offset-1" >
<nav role=navigation>
<ul class="nav nav-pills pull-left">
<li class=active><a href=index.html>Home</a>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Data<strong class="caret"></strong></a>
<ul class="dropdown-menu">
<li>
<a href="map.html">Map</a>
</li>
<li>
<a href="list.html">List</a>
</li>
<li class="divider"></li>
<li>
<a href="download.html">Download</a>
</li>
</ul>
</li>
<li><a href=links.html>Links</a>
<li><a href=contact.html>Contact</a>
</ul>
</nav>
<!--<h3 class=text-muted>Tomato Virome in China</h3>-->
</div>
<div class="col-md-10 col-md-offset-1" >
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="img/img1.jpg">
</div>
<div class="item">
<img src="img/img2.jpg">
</div>
<div class="item">
<img src="img/img3.jpg">
</div>
<div class="item">
<img src="img/img4.jpg">
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<div class="col-md-10 col-md-offset-1">
<h3>Tomato Virome in China:</h3>
<p align=justify><font size=3.5>
<br>
Tomato (<i>Solanum lycopersicum</i>) is one of the most popular and extensively consumed vegetable crops in the world.
The worldwide production of tomato in 2013 was approximately 164 million tons, with a value of $60 billion (FAO, 2013).<br><br>
China is the leading tomato producing country in the world (FAO, 2013). Viral infection is one of major factors limiting
tomato production. To obtain an overall picture of the diversity, distribution and evolution of tomato viruses in China,
we collected 170 field tomato samples across the country. Viruses in these samples were determined using sRNA sequencing.
Comprehensive analysis of these sRNA data was conducted using VirusDetect pipeline.
</font></p>
</div>
</div>
<div class="row footer">
<div class="col-md-1 col-md-offset-3">
<h5><b>Tomato Virome</b></h5>
<ul class="list-unstyled">
<li><a href="index.html">Home</a></li>
</ul>
</div>
<div class="col-md-2">
<h5><b>Project Participant(s)</b></h5>
<ul class="list-unstyled">
<li>Zhangjun Fei (BTI) PI</li>
</ul>
</div>
<div class="col-md-3">
<h5><b>Supported Links</b></h5>
<ul class="list-unstyled">
<li>
<a href=http://bioinfo.bti.cornell.edu/tool/VirusDetect/ target=_blank>VirusDetect</a>
</li>
<li>
<a href=http://bti.cornell.edu target=_blank>Boyce Thpompson Institute for Plant Research (BTI)</a>
</li>
</ul>
</div>
</div>
</body>
</html>