forked from uwsampa/research-group-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.html
46 lines (39 loc) · 1.58 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
---
layout: default
title: About Us
picture-role-groups:
- {roles: [faculty, postoc, staff], width: 4}
- {roles: [grad], width: 4}
- {roles: [ktp-associate, msc], width: 4}
no-picture-role-groups:
- {roles: [alum], width: 12}
- {roles: [ugrad, ugrad-alum], width: 12}
---
<p>
Our members have backgrounds in computer science, biomedical image and signal processing, electronics engineering, industrial design, machine learning, cognitive robotics, and social robotics. Our group is comprised of three faculty members, three PhD students, one Research Associate, and a range of bachelor's and master's level students working on individual and group projects throughout the academic year.
</p>
<!-- <br><br> -->
<section class="people row justify-content-between">
{% for role-group in page.picture-role-groups %}
<div class="col-md-{{ role-group.width }}">
{% for role in role-group.roles %}
{% include role-people.html role=role image=true %}
{% endfor %}
</div>
{% endfor %}
{% for item in site.data.people %}
{% assign person = item[1] %}
{% if person.role == role.key %}
{% include person.html person=person image=true %}
{% endif %}
{% endfor %}
</section>
<section class="people row justify-content-between">
{% for role-group in page.no-picture-role-groups %}
<div class="col-md-{{ role-group.width }}">
{% for role in role-group.roles %}
{% include role-people.html role=role image=false %}
{% endfor %}
</div>
{% endfor %}
</section>