-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpeople.html
42 lines (33 loc) · 1.24 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
---
layout: default
title: Klavins Lab | People
---
<div class='contain'>
<div class='heading'>
<h1 style='margin-bottom: 15px'>People</h1>
</div>
<div id='people'>
{% include group.html group=site.data.people.pi name='PI' %}
<div style='clear: both;'></div>
<!-- {% include group.html group=site.data.people.postdocs name='POSTDOC' %} -->
{% include group.html group=site.data.people.grads name='PHD' %}
<div style='clear: both;'></div>
<!-- {% include group.html group=site.data.people.masters name='MASTERS' %} -->
<!-- {% include group.html group=site.data.people.visitors name='VISIT<br />ORS' %} -->
<!-- {% include group.html group=site.data.people.staff name='STAFF' %} -->
<!-- {% include group.html group=site.data.people.ugs name='UNDER<br \>GRAD' %} -->
{% include group.html group=site.data.people.alumni name='ALUMNI' %}
<div style='clear: both;'></div>
</div>
<div style='margin-top: 50px'>
<b>MORE ALUMNI</b>
<br/>
{% for p in site.data.people.other %}
- <b>{{ p.name }}</b>, {{p.position}}{% if p.now %}, {{p.now}}{% endif %}
<br>
{% endfor %}
</div>
</div>
<script>
document.getElementById('nav-people').className += " highlight";
</script>