-
Notifications
You must be signed in to change notification settings - Fork 2
/
team.html
229 lines (215 loc) · 5.41 KB
/
team.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
---
layout: pagelayout
---
<!--
How to add a new group (table) or new members (row/cell):
1. Check if the group exist by looking for the <h2> header in the scripts, e.g. <h2> Principal Investigators <h2>.
* If the group is not exist, create one using the following format:
<hr>
<table class="peopletable" align="center">
<tbody>
<tr>
<td colspan="4">
<h2>new_group_header_name</h2>
</td>
</tr>
<tr>
<td>
<img class="headshot" src="image_file_path" alt="alternative_text_to_display">
<h3>Name, Education</h3>
<h4>Insititute</h4>
<h4>Role</h4>
</td>
</tr>
</tbody>
</table>
The above script doing:
a. First, add a horizontal line using <hr>
b. Then, create a group (table) using format like <table class="peopletable" align="center">.
c. start the table body <tbody>
d. start the row <tr>, cell <td>, add heading <h2>new_table_head_here<h2>
d. close the cell </td>, row </tr>, body </tdoby> and table </table>.
2. If your group alread exist:
* First check if the there still empty cells in current row.
* If not, start a new row by insert <tr> before </tbody> following the style above, then add your information.
* Close the cell </td>, any new row added </tr>
3. Test locally to check if everything looks as expected
-->
<h1>The CAST Team</h1>
<div class="center-description">
<!-- create a new table -->
<table class="peopletable" align="center">
<!-- start the table body -->
<tbody>
<!-- start a row -->
<tr>
<!-- specify the cell -->
<td colspan="3">
<!-- add subheading for the table -->
<h2>Principal Investigators</h2>
<!-- close the cell -->
</td>
<!-- close the row -->
</tr>
<!-- start a new row -->
<tr>
<!-- start a new cell -->
<td>
<!-- specify the image file path, `alt` attribute provide alternative text if the image can't be displayed -->
<img class="headshot" src="assets/images/Lucila.png" alt="Lucila Ohno-Machado">
<!-- sppecify the subheading -->
<h3>Lucila Ohno-Machado, MD, PhD</h3>
<h4>Medical Informatics</h4>
<!-- close the cell -->
</td>
<td>
<img class="headshot" src="assets/images/Kelly.png" alt="Kelly Frazer">
<h3>Kelly Frazer, PhD</h3>
<h4>Genetics</h4>
</td>
<td>
<img class="headshot" src="assets/images/Melissa.png" alt="<Melissa Gymrek">
<h3>Melissa Gymrek, PhD</h3>
<h4>Bioinformatics</h4>
</td>
</tr>
</tbody>
</table>
<hr />
<table class="peopletable" align="center">
<tbody>
<tr>
<td colspan="4">
<h2>Consortium PIs</h2>
</td>
</tr>
<tr>
<td>
<img class="headshot" src="assets/images/Hoon.png" alt="Hoon Cho">
<h3>Hoon Cho, PhD</h3>
<h4>Yale University</h4>
<h4>Distributed Analytics</h4>
</td>
<td>
<img class="headshot" src="assets/images/Phillip.jpg" alt="Phillip Tsao">
<h3>Phillip Tsao, PhD</h3>
<h4>VA Palo Alto</h4>
<h4>CVD Predictive Models</h4>
</td>
<td>
<img class="headshot" src="assets/images/Hua.png" alt="Hua Xu">
<h3>Hua Xu, PhD</h3>
<h4>Yale University</h4>
<h4>NLP, All of Us</h4>
</td>
<td>
<img class="headshot" src="assets/images/Haixu.png" alt="Haixu Tang, PhD">
<h3>Haixu Tang, PhD</h3>
<h4>University of Indiana</h4>
<h4>Privacy Technology</h4>
</td>
</tr>
</tbody>
</table>
<hr />
<table class="peopletable" align="center">
<tbody>
<tr>
<td colspan="4">
<h2>Team Members</h2>
</td>
</tr>
<tr>
<td>
<img class="headshot" src="assets/images/Vineet.png" alt="<Vineet Bafna">
<h3>Vineet Bafna, PhD</h3>
</td>
<td>
<img class="headshot" src="assets/images/Matteo.png" alt="<Matteo D'Antonio">
<h3>Matteo D'Antonio, PhD</h3>
</td>
<td>
<img class="headshot" src="assets/images/Niema.png" alt="<Niema Moshiri">
<h3>Niema Moshiri, PhD</h3>
</td>
<td>
<img class="headshot" src="assets/images/Alon.jpeg" alt="<Alon Goren">
<h3>Alon Goren, PhD</h3>
</td>
</tr>
<tr>
<td>
<img class="headshot" src="assets/images/Dorit.png" alt="<Dorit Rousseau">
<h3>Dorit Rousseau, Project Manager</h3>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
</table>
<hr />
<table class="peopletable" align="center">
<tbody>
<tr>
<td colspan="4">
<h2>Internal Advisory Board</h2>
</td>
</tr>
<tr>
<td>
<img class="headshot" src="assets/images/Olivier.png" alt="<Olivier Harismendy">
<h3>Olivier Harismendy</h3>
<h4>Bioinformatics</h4>
</td>
<td>
<img class="headshot" src="assets/images/Cinnamon.png" alt="<Cinnamon Bloss">
<h3>Cinnamon Bloss</h3>
<h4>Ethics</h4>
</td>
<td>
<img class="headshot" src="assets/images/Cheryl.png" alt="<Cheryl Anderson">
<h3>Cheryl Anderson</h3>
<h4>Social Determinants of Health</h4>
</td>
<td>
<img class="headshot" src="assets/images/Lisa.png" alt="<Lisa Madlensky">
<h3>Lisa Madlensky</h3>
<h4>Genetics Counseling</h4>
</td>
</tr>
</tbody>
</table>
<!-- uncomment this section to add Trainees table
<hr />
<table class="peopletable" align="center">
<tbody>
<tr>
<td colspan="4">
<h2>Trainees</h2>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
</table>
-->
</div>