-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
129 lines (119 loc) · 5.83 KB
/
index.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
layout: default
title: Home
body_class: home
---
{% include hero.html %}
<div class="container programmes bg-gradient-1">
<div class="row featured-content">
<div class="row-header">
<h2>Opportunities & Programmes</h2>
</div>
<div class="row-content col-12">
<div class="row-description col-12 col-md-8 col-lg-6">
<p>Discover a world of possibilities within our community. From networking events to mentorship programs
and leadership opportunities, there's something for everyone to explore. Whether you're looking to
sharpen your skills, expand your professional network, or take the next step in your career, we
offer a wide range of opportunities to help you achieve your goals. Join us on this journey of
growth and empowerment, and unlock your full potential in the tech industry.</p>
</div>
<div class="card-deck">
{% for programme in site.data.programmes %}
<div class="card-column col-12 col-md-6 col-lg-4">
<div class="card-programme card card-s">
<a href="{{ programme.url }}">
<figure>
<div class="material-symbols-outlined" aria-hidden="true">{{ programme.icon }}</div>
<figcaption>{{ programme.title }}</figcaption>
</figure>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% include featured-events.html %}
<div class="container mentors-cta bg-1">
<div class="row featured-content">
<div class="row-content col-12">
<div class="card-deck">
<div class="card card-m">
<div class="card-body">
<h2 class="card-title">Meet Our Dedicated Mentors</h2>
<p>Ready to advance in tech? Explore our diverse mentors who are here to guide and support you
on your journey.</p>
<a href="/mentors" class="btn btn-primary">Check our mentors</a>
</div>
</div>
<div class="card card-m">
<div class="card-body">
<h2 class="card-title">Become a Mentor</h2>
<p>Ready to empower and be empowered in tech? Become a mentor! Expand your network, give back,
share expertise, and discover new perspectives.</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdtf7-upMp1m5kJ4MSpexS-UwGJHhACEW-yPoEQoROHi4kVcg/viewform"
target="_blank" class='btn btn-primary'>Join as a Mentor</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container mission bg-1"></div>
<div class="row featured-content">
<div class="row-content col-12">
<div class="card-mission card card-l card-horizontal">
<div class="card-media col-12 col-md-6">
<img src="./assets/images/home/volunteer_16x9.png"
alt="three women sitting and working together with their laptops">
</div>
<div class="card-body col-12 col-md-6">
<h2 class="card-title">Do you want to volunteer with us?</h2>
<p>Empowering women in their tech careers through education, mentorship, community building, and
career services is our mission. We provide workshops and events, connect members with industry
mentors, foster a supportive community through meetups and conferences, and raise awareness for
more inclusive industry practices.</p>
<h4 id="volunteer">How can you join as a volunter?</h4>
<p>Fill out <a target="_blank"
href="https://docs.google.com/forms/d/e/1FAIpQLSew81KejeMqOhgb5-D5nTWWL3jHfkfG1VBpMBX6IXk1m-9YMw/viewform">
this form</a> and join the Slack channel
<a target="_blank" href="{{site.slack_channel}}/C06VB8BNL86"> #i_want_to_help</a>.
</div>
</div>
</div>
</div>
</div>
{% include featured-announcements.html %}
<div class="container mission bg-1 partner">
<div class="row featured-content">
<div class="row-content col-12">
<div class="card-mission card card-l card-horizontal">
<div class="card-media banner col-12 col-md-8">
<img src="./assets/images/partners/surrealdb.png" alt="SurrealDB banner with respective logo.">
</div>
<div class="card-body col-12 col-md-4">
<h2 class="card-title">New Partnership</h2>
<p>WCC is very happy to share our first partner <a href="http://surrealdb.com"
target="_blank">SurrealDB</a>.
</p>
<br>
<a href="/partners#surrealDB" class="btn btn-primary">Learn more</a>
</div>
</div>
</div>
</div>
</div>
<div class="container support">
<div class="row featured-content">
<div class="row-content col-12">
<div class="card-support card card-l">
<div class="card-body col-12">
<h2 class="card-title">Experiencing Technical Issues?</h2>
<a href="https://github.com/WomenCodingCommunity/WomenCodingCommunity.github.io/issues/new?template=bug_report.md&title=bug title"
target="_blank" class="btn btn-outline-primary">Send us a report</a>
</div>
</div>
</div>
</div>
</div>