-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathevents.html
More file actions
67 lines (60 loc) · 2.88 KB
/
events.html
File metadata and controls
67 lines (60 loc) · 2.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
---
layout: default
title: Online and In-Person Events
body_class: page list-page list-page-events
image: /assets/images/default-seo-thumbnail.png
---
{% assign today = "now" | date: "%Y%m%d" %}
<div class="container">
<div class="row">
<div class="content-constrained">
<section>
<p>Women Coding Community events and meetups present great opportunities to improve your skill set,
deepen your understanding of various topics, expand your professional network, and engage in
meaningful social interactions.</p>
<p>Our community hosts various engaging events, including webinars, hands-on technical workshops, study
groups, panel discussions and keynotes featuring industrial experts and tech professionals. Whether
online or in-person, these gatherings provide an invaluable opportunity to share both professional
insights and personal experiences with fellow members. Through collaborative learning and
networking, participants can broaden their horizons, stay abreast of the latest trends, and exchange
knowledge within the community.</p>
<p>Join us on Slack in <a href="{{site.slack_channel}}/C0700RUUTJR" target="_blank">#Events</a> channel
to stay up to date with the upcoming events.</p>
<p>Are you interested in giving a talk <a
href="https://docs.google.com/forms/d/e/1FAIpQLSfKXWoz5EmLpXBbHh455jOUGuV7v2x1e9ISGk1NtZKg7WS2Yw/viewform"
target="_blank">apply here</a></p>
</section>
</div>
</div>
</div>
<div class="container list-events">
<section class="row col-12">
<div class="row-header col-12">
<h2>Events</h2>
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" id="tab-upcoming-events">Upcoming Events</a>
</li>
<li class="nav-item">
<a class="nav-link" id="tab-past-events">Past Events</a>
</li>
</ul>
</div>
<div class="row-content col-12" id="upcoming-events">
<div class="card-deck">
{% assign sorted_events = site.data.events | sort: 'expiration' %}
{% for event in sorted_events %}
{% include event.html %}
{% endfor %}
</div>
</div>
<div class="row-content col-12" id="past-events">
<div class="card-deck">
{% assign reverse_sorted_events = site.data.events | sort: 'expiration' | reverse %}
{% for event in reverse_sorted_events %}
{% include event.html %}
{% endfor %}
</div>
</div>
</section>
</div>