-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmembros.html
More file actions
54 lines (48 loc) · 1.52 KB
/
membros.html
File metadata and controls
54 lines (48 loc) · 1.52 KB
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
---
title: Membros do GELOS
description: Listagem dos membros, e suas páginas
collection_src: members
---
<h1>{{ page.title }}</h1>
<p>
{{ page.description }}.
</p>
<p>
Se incluir nessa lista é um dos passos para ser membro pleno no GELOS. Basta
<a href="https://github.com/gelos-icmc/monorepo/new/main/site/src/_members?filename=seunome.md&value={{ site.new_member_template | cgi_escape }}">criar um arquivo</a>
no <a href="https://github.com/gelos-icmc/monorepo">repositório</a>!
</p>
{% assign members = site.members | where: "role", "member" | sort: "title" | sort: "draft" | sort: "inactive" %}
<section>
<header>
<h2>Membros Plenos</h2>
<p>Membros com direito à voto.</p>
</header>
{% for post in members %}
{% include listagem.html %}
{% endfor %}
</section>
{% assign onboarding_members = site.members | where: "role", "onboarding" | sort: "title" | sort: "draft" %}
{% if onboarding_members and onboarding_members.size != 0 %}
<section>
<header>
<h2>Membros Aspirantes</h2>
<p>Membros no processo de onboard.</p>
</header>
{% for post in onboarding_members %}
{% if post.role == "onboarding" %}
{% include listagem.html %}
{% endif %}
{% endfor %}
</section>
{% endif %}
{% assign alumni = site.members | where: "role", "alumni" | sort: "title" %}
<section>
<header>
<h2>Alumni</h2>
<p>Membros que deixaram o GELOS ou estão há muito tempo inativos.</p>
</header>
{% for post in alumni %}
{% include listagem.html %}
{% endfor %}
</section>