forked from alexandria-sakrejda/reichlab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.html
86 lines (77 loc) · 3.23 KB
/
people.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
---
layout: default
---
<h2>About the Reich Lab</h2>
<div class="columns">
<div class="column col-6 col-md-12">
<p>
Led by PI Nicholas Reich and based in the
<a href="http://www.umass.edu/sphhs/biostatistics" target="_blank">Department
of Biostatistics and Epidemiology at the University of Massachusetts
Amherst</a>, the Reich Lab focuses on developing statistical methods and
tools for data arising from infectious disease settings.
</p>
<p>
We use statistics, data science, and epidemiology to gain better
understanding of the complexities of infectious disease dynamics. Our work
has been featured in the
<a href="http://www.nytimes.com/2013/07/09/health/understanding-the-protective-side-of-dengue-virus.html" target="_blank">
New York Times</a>, the <a href="http://www.bostonglobe.com/metro/2018/01/01/umass-researcher-helps-predict-timing-peak-flu/" target="_blank">Boston Globe</a>, and on
<a href="http://nepr.net/news/2014/11/24/flu-season-made-easy-with-new-tool/" target="_blank">
New England Public Radio</a>.
</p>
<p>
With active funded projects from the NIH, DARPA, CDC, and VA, the Lab is
involved in independent and collaborative research efforts. Our
collaborators include the Infectious Disease Dynamics Working Group at
Johns Hopkins, the Thai Ministry of Public Health and
National Electronics and Computer Technology Center (NECTEC), the Dengue Branch of
the CDC in Puerto Rico, the New York City Department of Health and Mental
Hygiene, the Children's Hospital Colorado, and the Veterans Health
Administration branches in New York City and Iowa City.
</p>
</div>
<div class="column col-6 col-md-12 float-left">
<img class="img-responsive rounded" src="images/group-shot-smaller.jpg" alt="">
</div>
</div>
<div class="divider"></div>
<div class="columns">
<div class="column col-12">
<h2>People</h2>
</div>
{% for type in page.types %}
{% unless type == 'default' %}
<div class="column col-12">
<h3 class="people-type">{{ type }}</h3>
</div>
{% endunless %}
{% for member in page.members %}
{% if member.type == type %}
<div class="column col-12">
<div class="card-people columns">
<div class="card-image column col-3 col-sm-12">
<div class="img-people" style="background-image: url({{ member.image }});">
</div>
</div>
<div class="column col-9 col-sm-12">
<div class="card-header">
<h4 class="card-title">{{ member.name }}</h4>
<h6 class="card-subtitle show-sm">{{ member.role }}</h6>
<h6 class="card-subtitle-inline hide-sm">{{ member.role }}</h6>
</div>
<div class="card-body">
{{ member.description }}
</div>
<div class="card-footer">
{% for link in member.links %}
<a href="{{ link.url }}" class="btn btn-sm btn-default">{{ link.name }}</a>
{% endfor %}
</div>
</div>
</div>
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>