-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpeople.html
40 lines (36 loc) · 1008 Bytes
/
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
---
layout: default
title: Our Current Team
picture-role-groups:
- {roles: [mentors], width: 6}
- {roles: [mentors1], width: 6}
no-picture-role-groups:
- {roles: [members2], width: 6}
- {roles: [members], width: 6}
---
<h2 align="center">Mentors</h3>
<p>
<br>
</p>
<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 %}
</section>
<h2 align="center">Members</h2>
<p>
<br>
</p>
<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=true %}
{% endfor %}
</div>
{% endfor %}
</section>