forked from c-proof/cproofwebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
members.html
267 lines (224 loc) · 8.66 KB
/
members.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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
---
layout: project_jp
title: "People"
description: "C-PROOF team"
header-img: "img/scenicglider_jp_crop.jpg"
category: members
---
<hr>
<body class="people">
<h2>C-PROOF Investigators</h2>
<div class="row">
<div class="columnl" >
<h2>Glider and Float Science Leads</h2>
{% for member in site.data.members %} {% if member.type == "sciencelead" %}{% if member.visible == true %}
<img src="{{ member.img }}" style="margin-top:0px; margin-bottom:5px; margin-right:10px; float:left; width:150px !important">
<h3>{{ member.name }}</h3>
<p class="sl">
{{ member.role }}
<br>
{% if member.org %}
{{member.title}}, {{ member.org }}
{% endif %}
{% if member.url %}
<br>
<span class="social-share-googleplus"><a href="{{ member.url }}" title="Google Plus"><img src="{{ "/img/icons/url-icon.png"| prepend: site.baseurl }}" style="height:20px">Website</a></span>
{% endif %}
{% if member.github %}
<span class="social-share-googleplus"><a href="https://github.com/{{ member.github }}" title="Github"><img src="{{ "/img/icons/github-icon.png" | prepend: site.baseurl }}" style="height:20px">Github</a></span>
{% endif %}
{% if member.gplus %}
<span class="social-share-googleplus"><a href="{{ member.gplus }}" title="Google Plus"><img src="{{ "/img/icons/gplus-icon.png" | prepend: site.baseurl }}" style="height:20px">Google Plus</a></span>
{% endif %}
<br/>
<p class="people_">
{% if member.bio %}
{{ member.bio }}
{% endif %}
<p>
</p>
<hr>
{% endif %}{% endif %}{% endfor %}
<h2>Hakai Institute Investigators</h2>
{% for member in site.data.members %} {% if member.type == "hakai" %}{% if member.visible == true %}
{% if member.img %}
<img src="{{ member.img }}" style="margin-top:0px; margin-bottom:5px; margin-right:10px;float:left; width:150px !important">
{% endif %}
<h3>{{ member.name }}</h3>
{% if member.img %}
<p class="staf">
{% else %}
<p>
{% endif %}
{{ member.role }}
</br>
{{member.title}}
{% if member.org %}
{{ member.org }}
{% endif %}
{% if member.url %}
<br>
<span class="social-share-googleplus"><a href="{{ member.url }}" title="Google Plus"><img src="{{ "/img/icons/url-icon.png"| prepend: site.baseurl }}" style="height:20px">Website</a></span>
{% endif %}
{% if member.github %}
<span class="social-share-googleplus"><a href="https://github.com/{{ member.github }}" title="Github"><img src="{{ "/img/icons/github-icon.png" | prepend: site.baseurl }}" style="height:20px">Github</a></span>
{% endif %}
{% if member.gplus %}
<span class="social-share-googleplus"><a href="{{ member.gplus }}" title="Google Plus"><img src="{{ "/img/icons/gplus-icon.png" | prepend: site.baseurl }}" style="height:20px">Google Plus</a></span>
{% endif %}
<br/>
<p class="people_"></p>
{% if member.bio %}
{{ member.bio }}
{% endif %}
</p>
</p>
<hr>
{% endif %}{% endif %}{% endfor %}
<p></p>
</div>
<div class="columnr" >
<h2>Co-Investigators</h2>
{% for member in site.data.members %} {% if member.type == "investigator" %}{% if member.visible == true %}
<img src="{{ member.img }}" style="margin-top:0px; margin-bottom:5px; margin-right:10px; float:left; width:150px !important">
<h3>{{ member.name }}</h3>
<p class="sl">
{{ member.role }}
</br>
{% if member.org %}
{{member.title}}, {{ member.org }}
{% endif %}
{% if member.url %}
<br>
<span class="social-share-googleplus"><a href="{{ member.url }}" title="Google Plus"><img src="{{ "/img/icons/url-icon.png"| prepend: site.baseurl }}" style="height:20px">Website</a></span>
{% endif %}
{% if member.github %}
<span class="social-share-googleplus"><a href="https://github.com/{{ member.github }}" title="Github"><img src="{{ "/img/icons/github-icon.png" | prepend: site.baseurl }}" style="height:20px">Github</a></span>
{% endif %}
{% if member.gplus %}
<span class="social-share-googleplus"><a href="{{ member.gplus }}" title="Google Plus"><img src="{{ "/img/icons/gplus-icon.png" | prepend: site.baseurl }}" style="height:20px">Google Plus</a></span>
{% endif %}
<br/>
<p class="people_">
{% if member.bio %}
{{ member.bio }}
{% endif %}
</p>
</p>
<hr>
{% endif %}{% endif %}{% endfor %}
<p></p>
</div>
</div>
<h2> C-PROOF staff </h2>
{% for member in site.data.members %} {% if member.type == "cproofstaff" %}{% if member.visible == true %}
{% if member.img %}
<img src="{{ member.img }}" style="margin-top:0px; margin-bottom:5px; margin-right:10px;float:left; width:150px !important">
{% endif %}
<h3>{{ member.name }}</h3>
{% if member.img %}
<p class="staf">
{% else %}
<p>
{% endif %}
{% if member.role %}
{{ member.role }}
<br>
{% endif %}
{{ member.title }}
{% if member.url %}
<br>
<span class="social-share-googleplus"><a href="{{ member.url }}" title="Google Plus"><img src="{{ "/img/icons/url-icon.png"| prepend: site.baseurl }}" style="height:20px">Website</a></span>
{% endif %}
{% if member.github %}
<span class="social-share-googleplus"><a href="https://github.com/{{ member.github }}" title="Github"><img src="{{ "/img/icons/github-icon.png" | prepend: site.baseurl }}" style="height:20px">Github</a></span>
{% endif %}
{% if member.gplus %}
<span class="social-share-googleplus"><a href="{{ member.gplus }}" title="Google Plus"><img src="{{ "/img/icons/gplus-icon.png" | prepend: site.baseurl }}" style="height:20px">Google Plus</a></span>
{% endif %}
<br/>
{% if member.bio %}
{{ member.bio }}
{% endif %}
</p>
<hr>
{% endif %}{% endif %}{% endfor %}
<h2> Students and Post-docs </h2>
{% for member in site.data.students %} {% if member.visible == true %}
<img src="{{ member.img }}" style="margin-top:0px; margin-bottom:5px; margin-right:10px; float:left; width:150px !important">
<h3>{{ member.name }}</h3>
<p class="stu">
{{ member.role }}
</br>
{% if member.org %}
{{member.title}}, {{ member.org }}
{% endif %}
{% if member.url %}
<br>
<span class="social-share-googleplus"><a href="{{ member.url }}" title="Google Plus"><img src="{{ "/img/icons/url-icon.png"| prepend: site.baseurl }}" style="height:20px">Website</a></span>
{% endif %}
{% if member.github %}
<span class="social-share-googleplus"><a href="https://github.com/{{ member.github }}" title="Github"><img src="{{ "/img/icons/github-icon.png" | prepend: site.baseurl }}" style="height:20px">Github</a></span>
{% endif %}
{% if member.gplus %}
<span class="social-share-googleplus"><a href="{{ member.gplus }}" title="Google Plus"><img src="{{ "/img/icons/gplus-icon.png" | prepend: site.baseurl }}" style="height:20px">Google Plus</a></span>
{% endif %}
<br/>
{% if member.bio %}
{{ member.bio }}
{% endif %}
</p>
<hr>
<span> </span>
{% endif %}{% endfor %}
<meta name="viewport" content="width=device-width, initial-scale=1">
<hr>
<h2>Scientific Collaborators</h2>
<div class="row">
<div class="column" style="background-color:rgb(250, 250, 250);">
<h4>Youyu Lu</h4>
Research Scientist, Department of Fisheries and Oceans Bedford Institute of Ocean Sciences
<h4>Angelica Pena</h4>
Research Scientists, Department of Fisheries and Oceans Institute of Ocean Sciences
<h4>Brian Hunt</h4>
Biological Oceanographer, Hakai Institute
<h4>Charles Hannah</h4>
Research Scientists, Department of Fisheries and Oceans Institute of Ocean Sciences
<h4>Ian Perry </h4>
Research Scientist, Department of Fisheries and Oceans Pacific Biological Station
<h4>Jay Cullen</h4>
Professor, University of Victoria, School of Earth and Ocean Sciences
<h4>Susan Allen</h4>
Professor, University of British Columbia, Earth, Ocean, and Atmospheric Sciences
<h4>Peter Wild</h4>
Professor, Director IESVic, University of Victoria Mechanical Engineering
<h4>Benoit Poullot</h4>
Environment and Climate Change Canada Environmental Numerical Weather Pred.
</div>
<div class="column" >
<h4>Katja Fennel</h4>
Professor Dalhousie University Department of Oceanography
<h4>Randy Riemann</h4>
Director, BC. Hydro Resource Planning
<h4>Fabian Wolk</h4>
President, Rockland Scientific Cascadia Coast Research
<h4>Clayton Hiles</h4>
Principal Engineer, Cascadia Coast Research
<h4>John Dower</h4>
Professor, University of Victoria Biology
<h4>Lisa Miller</h4>
Research Scientist, Department of Fisheries and Oceans Institute of Ocean Sciences
<h4>Debby Ianson</h4>
Research Scientist, Department of Fisheries and Oceans Institute of Ocean Sciences
<h4>Stephen Brydon</h4>
Director, BC Ministry of Energy and Mines Innovative Clean Energy Fund
<h4>Adam Monahan</h4>
Professor, University of Victoria, School of Earth and Ocean Sciences
<h4>David Hebert</h4>
Research Scientist, Department of Fisheries and Oceans Bedford Institute of Oceanography
<h4>Richard Pawlowicz</h4>
Professor, University of British Columbia, Earth, Ocean, & Atmospheric Sciences
</div>
</div>
</head>
<body>