-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
77 lines (74 loc) · 3.96 KB
/
Copy pathteam.html
File metadata and controls
77 lines (74 loc) · 3.96 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
---
layout: page
title: Team
permalink: /team/
---
<section class="team-section" aria-labelledby="pi-heading">
<h2 id="pi-heading" class="team-section__heading">Principal Investigator</h2>
{% for member in site.data.team %}
{% if member.role == "Principal Investigator" %}
<article class="pi-profile">
<img class="pi-profile__photo" src="{{ member.photo | relative_url }}" alt="Portrait of {{ member.name }}">
<div class="pi-profile__content">
<h3>{{ member.name }}</h3>
<div class="member-bio">{{ member.bio }}</div>
{% if member.social %}
<p class="member-links">
{% if member.social.LinkedIn %}<a href="{{ member.social.LinkedIn }}" target="_blank" rel="noopener noreferrer">LinkedIn</a>{% endif %}
{% if member.social.Site %}<a href="{{ member.social.Site }}" target="_blank" rel="noopener noreferrer">Website</a>{% endif %}
</p>
{% endif %}
</div>
</article>
{% endif %}
{% endfor %}
</section>
<section class="team-section" aria-labelledby="members-heading">
<h2 id="members-heading" class="team-section__heading">Lab Members</h2>
<div class="member-grid">
{% for member in site.data.team %}
{% unless member.role == "Principal Investigator" %}
<article class="member-card">
<img class="member-card__photo" src="{{ member.photo | relative_url }}" alt="Portrait of {{ member.name }}">
<div class="member-card__content">
<h3>{{ member.name }}</h3>
<p class="member-role">{{ member.role }}</p>
<div class="member-bio">{{ member.bio }}</div>
{% if member.social %}
<p class="member-links">
{% if member.social.LinkedIn %}<a href="{{ member.social.LinkedIn }}" target="_blank" rel="noopener noreferrer">LinkedIn</a>{% endif %}
{% if member.social.Site %}<a href="{{ member.social.Site }}" target="_blank" rel="noopener noreferrer">Website</a>{% endif %}
</p>
{% endif %}
</div>
</article>
{% endunless %}
{% endfor %}
</div>
</section>
<section class="team-section alumni-section" aria-labelledby="alumni-heading">
<h2 id="alumni-heading" class="team-section__heading">Alumni</h2>
<ul class="alumni-list">
<li>Fengyuan Huang, graduate student, 2019.03–2023.08</li>
<li>Meghan Moody, undergraduate student, 2021.01–2023.05, now a graduate student at Baylor College of Medicine</li>
<li>Yu Chen, graduate student, 2018.03–2022.12, now a Scientist in Computational Genomics at Bristol Myers Squibb</li>
<li>Jenna Ziad Taer, undergraduate intern, 2022.08–2022.11</li>
<li>Zhengzhi Tan, master’s student intern, 2021.11–2022.10</li>
<li>Ethan Vallely, undergraduate intern, 2020.09–2022.08, now at the University of South Alabama College of Medicine</li>
<li>Shamza Manzoor, MSMBS intern, 2022.01–2022.08</li>
<li>Debbie X. Fu, undergraduate intern, 2022.01–2022.05</li>
<li>Guy Twa, GGB rotation student, 2021.10–2021.12</li>
<li>Stephanie Cook, undergraduate intern, 2020.12–2021.08</li>
<li>Yiqing Wang, Ph.D. student, 2020.01–2021.05</li>
<li>Shaurita Hutchins, GGB rotation student, 2021.01–2021.03</li>
<li>Santhosh Kumar Karthikeyan, GBS rotation student, 2020.09–2020.12</li>
<li>Weisheng Chen, GBS rotation student, 2020.09–2020.12</li>
<li>Katrina Whitten, undergraduate intern, 2020.09–2020.12</li>
<li>Colton Miller, master’s student intern, 2020.02–2020.07</li>
<li>Peng Xu, postdoctoral fellow, 2017.09–2019.09, now an instructor at Mount Sinai</li>
<li>Ari Ginsparg, GGB rotation student, 2019.10–2019.12</li>
<li>Yixin Zhang, undergraduate intern, UAB Computer Science, 2019.02–2019.05</li>
<li>Mary Bunton, undergraduate intern, 2018.10–2018.12</li>
<li>Ming Ye, Associate Professor, Southwest University, China, visiting scientist, 2017.10–2018.10</li>
</ul>
</section>