-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtask-force.html
executable file
·42 lines (37 loc) · 1.72 KB
/
task-force.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: CarpentryCon Task Force
permalink: /task-force/
image: cchome-2022-fire.jpg
color: "#80395F"
modal: task-force
---
{% assign chairs = "" | split: ',' %}
{% assign cchomeorganiser = "" | split: ',' %}
{% assign staff = "" | split: ',' %}
{% assign accessibility = "" | split: ',' %}
{% assign budget = "" | split: ',' %}
{% assign comms = "" | split: ',' %}
{% assign program = "" | split: ',' %}
{% assign website = "" | split: ',' %}
{% assign coc = "" | split: ',' %}
{% assign advisor = "" | split: ',' %}
{% assign volunteer = "" | split: ',' %}
{% assign members = site.data.team.people %}
{% for mem in members %}
{% for com in mem.committees %}
{% if com.name == "chairs" %}{% assign chairs = chairs | push: mem %}{% endif %}
{% if com.name == "cchomeorganiser" %}{% assign cchomeorganiser = cchomeorganiser | push: mem %}{% endif %}
{% if com.name == "staff" %}{% assign staff = staff | push: mem %}{% endif %}
{% if com.name == "accessibility" %}{% assign accessibility = accessibility | push: mem %}{% endif %}
{% if com.name == "budget" %}{% assign budget = budget | push: mem %}{% endif %}
{% if com.name == "comms" %}{% assign comms = comms | push: mem %}{% endif %}
{% if com.name == "program" %}{% assign program = program | push: mem %}{% endif %}
{% if com.name == "website" %}{% assign website = website | push: mem %}{% endif %}
{% if com.name == "coc" %}{% assign coc = coc | push: mem %}{% endif %}
{% if com.name == "advisor" %}{% assign advisor = advisor | push: mem %}{% endif %}
{% if com.name == "volunteer" %}{% assign volunteer = volunteer | push: mem %}{% endif %}
{% endfor %}
{% endfor %}
{% include top-section.html %}
{% include task-force.html %}