-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnews.html
More file actions
182 lines (157 loc) · 6.88 KB
/
news.html
File metadata and controls
182 lines (157 loc) · 6.88 KB
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>CSBIO News</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/modern-business.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- Navigation bar is from a script I made that pastes text -->
<script type="text/javascript" src="js/header.js"></script>
<!-- Page Content -->
<div class="container">
<!-- Page Heading/Breadcrumbs -->
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">News
<small>CSBIO</small>
</h1>
</div>
</div>
<!-- /.row -->
<!-- Content Row -->
<div class="row">
<!-- Map Column -->
<div class="col-md-12">
<h3>Stay up to date with the latest and greatest news</h3>
</div>
</div>
<!-- Content Row -->
<div class="row">
<div class="col-lg-12">
<div class="panel-group" id="accordion">
<!-- /.panel -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo"><small>Sept 29, 2017</small> Congratulations to Wen and Chad for their first place finish in the National Cancer Institute’s Up for A Challenge</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
<a href="https://twin-cities.umn.edu/news-events/university-minnesota-researchers-win-breast-cancer-challenge-award" class="">Check out the news article</a>
<br>
<a href="http://journals.plos.org/plosgenetics/article?id=10.1371/journal.pgen.1006945" class="">Check out the editorial in PLOS</a>
<br>
<a href="http://dx.plos.org/10.1371/journal.pgen.1006973" class="">Check out the paper</a>
</div>
</div>
</div>
<!-- /.panel -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseX"><small>Sept 3, 2017</small> Henry Ward has joined the lab as a PhD student</a>
</h4>
</div>
<div id="collapseX" class="panel-collapse collapse">
<div class="panel-body">
Name: Henry Ward
<br>
Hometown:
<br>
College:
<br>
Program: BICB PhD
</div>
</div>
</div>
<!-- /.panel -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseX"><small>Sept 1, 2016</small> Xiaotong Liu has joined the lab as a PhD student</a>
</h4>
</div>
<div id="collapseX" class="panel-collapse collapse">
<div class="panel-body">
Name: Xiaotong Liu
<br>
Hometown: Qingdao, Shandong Province, China
<br>
College: Shanghai Jiao Tong University
<br>
Program: BICB
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseOne"> <small>Oct 29, 2016</small> The new lab website is up and running</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse">
<div class="panel-body">
The website is still young and may have some errors. If you spot one, you can email Meesh at mich0391@umn.edu for any changes.
</div>
</div>
</div>
<!-- /.-->
<!-- /.panel -->
</div>
<!-- /.panel-group -->
</div>
<!-- /.col-lg-12 -->
</div>
<!-- /.row -->
<hr>
</div>
<!-- /.container -->
<hr>
<!-- Pagination -->
<div class="row text-center">
<div class="col-lg-12">
<ul class="pagination">
<li>
<a href="#">«</a>
</li>
<li class="active">
<a href="#">1</a>
</li>
<li>
<a href="#">2</a>
</li>
<li>
<a href="#">3</a>
</li>
<li>
<a href="#">4</a>
</li>
<li>
<a href="#">5</a>
</li>
<li>
<a href="#">»</a>
</li>
</ul>
</div>
</div>
<!-- /.row -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Footer -->
<script type="text/javascript" src="js/footer.js"></script>
</body>
</html>