forked from HIRO-group/HIRO-group.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.html
75 lines (54 loc) · 1.97 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
---
title: HIRO people
permalink: people.html
type: people
description: "List of members of the Human Interaction and RObotics group"
roles:
- faculty
- labmanager
- postdoc
- phd
- grad
- undergrad
- collaborator
- alumni
---
<section id="post-cv">
<div class="container">
<div id="article">
{% include image.html url="group_pics/latest.jpg" max-width="100%" description="Group picture taken at the end of Fall 2019 semester. From left to right: Jacob, Ryan, Kandai, Mayank, Garrett, Krishna, Ella, Caleb, Anuj, Alessandro, Kyle, Guohui, Joewie, Mohana, Max, Matt, William. Chi-Ju was missing as he was flying to California for an interview." %}
{% include ppl.html role="faculty" size="big" %}
{% assign labmanager = site.data.people | where:"role","labmanager" %}
{% if labmanager != blank %}
<h1>Lab Manager</h1>
{% include ppl.html role="labmanager" %}
{% endif %}
{% assign postdoc = site.data.people | where:"role","postdoc" %}
{% if postdoc != blank %}
<h1>Postdocs</h1>
{% include ppl.html role="postdoc" %}
{% endif %}
{% assign phd = site.data.people | where:"role","phd" %}
{% if phd != blank %}
<h1>PhD Students</h1>
{% include ppl.html role="phd" %}
{% endif %}
<h1>Graduate Students</h1>
{% include ppl.html role="grad" %}
<h1>Undergraduate Research Assistants</h1>
{% include ppl.html role="undergrad" %}
{% assign collaborator = site.data.people | where:"role","collaborator" %}
{% if collaborator != blank %}
<h1>External Collaborators</h1>
{% include ppl.html role="collaborator" %}
{% endif %}
{% assign alumni = site.data.people | where:"role","alumni" %}
{% if alumni != blank %}
<h1>Alumni</h1>
<ul>
{% include ppl.html role="alumni" %}
</ul>
{% endif %}
</div>
</div>
</section>