-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy patheventos.html
65 lines (54 loc) · 2.01 KB
/
eventos.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
layout: default
scripts: [event-filters]
---
{% assign today = site.time | date: "%Y-%m-%d" %}
<!-- BANNER -->
<section id="banner" class="banner-palestrantes">
<div class="banner-content">
<h2 class="page-banner-title">Respeito no trabalho</h2>
<div class="page-banner-subtitle">
<p>A HerForce está conectando mulheres a melhores ambientes para construir carreira!</p>
</div>
<a class="button-banner" href="https://www.herforce.com.br/" rel="noopener" target="_blank">Conheça o projeto</a>
</div>
</section>
<!-- EVENTOS -->
<section class="page-section">
<h1 class="page-section-subtitle-alt">Sobre os eventos</h1>
<p class="page-section-text">
O Codamos está comprometido a dar destaque a eventos que prezem pela inclusão, diversidade e
acessibilidade. Criamos rótulos para facilitar a busca por eventos que têm ícones representados
pelas legendas abaixo:
</p>
<ul class="icon-labels">
{% for icon_data in site.data.event_icons %}
{% assign icon_name = icon_data[0] %}
{% assign icon = icon_data[1] %}
<li class="events-section-label" data-event-filter="{{ icon_name }}">
<i class="{{ icon.class }}" aria-hidden="true"></i> = {{ icon.label }}
</li>
{% endfor %}
</ul>
</section>
<!-- EVENTOS -->
<section class="page-section">
<h1 class="page-section-title">O que vem pela frente</h1>
<ul class="events-cards">
{% assign current = site.events | where_exp: "e", "e.until >= today" | sort: "from" %}
{% for event in current %}
{% include event.html event=event %}
{% endfor %}
</ul>
</section>
{% include code_of_conduct.html %}
<!-- EVENTOS PASSADOS -->
<section class="page-section">
<h1 class="page-section-title">O que já aconteceu</h1>
<ul class="events-cards events-cards-past">
{% assign past = site.events | where_exp: "e", "e.until < today" | sort: "from" | reverse | slice:0,6 %}
{% for event in past %}
{% include event.html event=event rsvp=false cfp=false %}
{% endfor %}
</ul>
</section>