-
Notifications
You must be signed in to change notification settings - Fork 20
/
people.html
38 lines (33 loc) · 962 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
---
layout: page
title: "Who we are"
description: "Your description goes here"
---
<div class="grid-container">
{% for person in site.data.people %}
{% if person[1].team == "steering-committee" %}
{% assign steering = true %}
{% endif %}
{% if person[1].team == "code-of-conduct-committee" %}
{% assign coc = true %}
{% endif %}
{% if person[1].team == "advisors" %}
{% assign advisors = true %}
{% endif %}
{% if person[1].team == "production" %}
{% assign production = true %}
{% endif %}
{% endfor %}
{% if steering %}
{% include helpers/new_team.html name="Steering Committee" %}
{% endif %}
{% if coc %}
{% include helpers/new_team.html name="Code of Conduct Committee" %}
{% endif %}
{% if advisors %}
{% include helpers/new_team.html name="Advisors" %}
{% endif %}
{% if production %}
{% include helpers/new_team.html name="Production" %}
{% endif %}
</div>