-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathprojetos.html
More file actions
49 lines (42 loc) · 1.72 KB
/
Copy pathprojetos.html
File metadata and controls
49 lines (42 loc) · 1.72 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
---
title: Projetos
description: Índice de projetos e atividades recorrentes.
collection_src: projects
---
<h1> {{ page.title }} </h1>
<p>{{ page.description }}</p>
<p><small>Ainda estamos no processo de listar os nossos projetos aqui. Se sentir falta de algum, <a href="https://github.com/gelos-icmc/monorepo">contribua</a>!</small></p>
<section id="atuais">
<header>
<h2><a href="#atuais">#</a> Atuais</h2>
<p>Projetos em progresso e atividades permanentes</p>
</header>
{% assign permanent_projects = site.projects | where:"state","permanent" %}
{% for post in permanent_projects %}{% include listagem.html element="h3" %}{% endfor %}
{% assign in_progress_projects = site.projects | where:"state","in_progress" %}
{% for post in in_progress_projects %}{% include listagem.html element="h3" %}{% endfor %}
</section>
<section id="pausados">
<header>
<h2><a href="#pausados">#</a>Pausados</h2>
<p>Projetos temporariamente pausados (geralmente órfãos)</p>
</header>
{% assign suspended_projects = site.projects | where:"state","paused" %}
{% for post in suspended_projects %}{% include listagem.html element="h3" %}{% endfor %}
</section>
<section id="em-concepcao">
<header>
<h2><a href="#em-concepcao">#</a> Em concepção</h2>
<p>Projetos em fase de concepção</p>
</header>
{% assign wip_projects = site.projects | where:"state","wip" %}
{% for post in wip_projects %}{% include listagem.html element="h3" %}{% endfor %}
</section>
<section id="concluidos">
<header>
<h2><a href="#concluidos">#</a> Concluídos</h2>
<p>Projetos finalizados</p>
</header>
{% assign finished_projects = site.projects | where:"state","finished" %}
{% for post in finished_projects %}{% include listagem.html element="h3" %}{% endfor %}
</section>