-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathteam.html
92 lines (86 loc) · 4.68 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
---
layout: default
title: Meet the Team
desc: Meet the Team
sectionid: team
---
<div class="container page-pad">
<div class="row">
<div class="col-sm-6 col-md-4" align="center">
<img src="{{ "/img/profile.jpg" | prepend: site.baseurl }}" class="img-responsive img-circle" alt="Jean Fan">
</div>
<div class="col-sm-6 col-md-8">
<h2 class="header-light regular-pad">Prof. Jean Fan</h2>
<h4>Assistant Professor</h4>
Jean Fan is a member of the faculty of <a href="https://www.bme.jhu.edu/">Biomedical Engineering</a> in the Center for Computational Biology at Johns Hopkins University. Her research team, the JEFworks lab, is interested in understanding the molecular and spatial-contextual factors shaping cellular identity and heterogeneity. She develops new open-source computational software for analyzing single-cell multi-omic and imaging data that can be tailored and applied to diverse cancer types and biological systems. Prof. Fan is the founder, director, and lead software developer for the non-profit organization <a href="https://custemized.org/">CuSTEMized</a>, which provides personalized STEM picture storybooks to encourage young girls to see themselves as scientists. She currently serves as an editor for <a href="https://journals.plos.org/ploscompbiol/">PLoS Computational Biology</a>. The impact of Prof. Fan's work has been recognized by several awards and honors, including the Forbes 30 Under 30, the Nature Research Award for Inspiring Science, and the NSF CAREER Award.
<br><br>
<a href="https://jean.fan/" target="_blank"><li class="fa fa-fw fa-2x fa-home"></li></a>
<a href="https://www.twitter.com/jefworks" target="_blank"><li class="fa fa-fw fa-2x fa-twitter"></li></a>
<a href="https://bsky.app/profile/jef.works" target="_blank"><svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#18BC9C" d="M111.8 62.2C170.2 105.9 233 194.7 256 242.4c23-47.6 85.8-136.4 144.2-180.2c42.1-31.6 110.3-56 110.3 21.8c0 15.5-8.9 130.5-14.1 149.2C478.2 298 412 314.6 353.1 304.5c102.9 17.5 129.1 75.5 72.5 133.5c-107.4 110.2-154.3-27.6-166.3-62.9l0 0c-1.7-4.9-2.6-7.8-3.3-7.8s-1.6 3-3.3 7.8l0 0c-12 35.3-59 173.1-166.3 62.9c-56.5-58-30.4-116 72.5-133.5C100 314.6 33.8 298 15.7 233.1C10.4 214.4 1.5 99.4 1.5 83.9c0-77.8 68.2-53.4 110.3-21.8z"/></svg></a>
<a href="https://www.github.com/jefworks" target="_blank"><li class="fa fa-fw fa-2x fa-github"></li></a>
<a href="https://www.linkedin.com/in/jeanfan" target="_blank"><li class="fa fa-fw fa-2x fa-linkedin"></li></a>
<a href="https://www.instagram.com/jefworks/" target="_blank"><li class="fa fa-fw fa-2x fa-instagram"></li></a>
<a href="https://www.youtube.com/JEFworks" target="_blank"><li class="fa fa-fw fa-2x fa-youtube"></li></a>
<a href="mailto:[email protected]"><li class="fa fa-fw fa-2x fa-envelope"></li></a>
<b><a href="/about">[CV]</a></b>
</div>
</div>
<hr>
<div class="row">
<h1 align="center">Lab Members</h1>
<div id="my-team">
{% for pub in site.team %}
{% if pub.alumni == null %}
{% if pub.name != "You!"%}
<p>{{ pub }}</p>
{% endif %}
{% endif %}
{% endfor %}
</div>
<script>
var myList = document.querySelector('#my-team');
for (var i = myList.children.length; i >= 0; i--) {
myList.appendChild(myList.children[Math.random() * i | 0]);
}
</script>
<div id="join_you">
{% for pub in site.team %}
{% if pub.name == "You!" %}
<p>{{ pub }}</p>
{% endif %}
{% endfor %}
</div>
</div>
</div>
<div class="bg-light"><div class="container page-pad">
<div class="row">
<div id="alumni">
<h1 align="center">Alumni</h1>
<br>
{% assign sorted = site.team | sort: 'alumni-date' | reverse %}
{% for pub in sorted %}
{% if pub.alumni != null %}
{% if pub.core == TRUE %}
{{ pub }}
{% endif %}
{% endif %}
{% endfor %}
</div>
</div>
</div></div>
<div class="container page-pad">
<div class="row">
<div id="interns">
<h1 align="center">Summer Interns/Rotation Students/Visiting Scholars</h1>
<br>
{% assign sorted = site.team | sort: 'alumni-date' | reverse %}
{% for pub in sorted %}
{% if pub.alumni != null %}
{% if pub.core != TRUE %}
{{ pub }}
{% endif %}
{% endif %}
{% endfor %}
</div>
</div>
</div>