-
Notifications
You must be signed in to change notification settings - Fork 0
/
program-study-group.html
45 lines (44 loc) · 2.31 KB
/
program-study-group.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
---
layout: default
title: Study Groups
body_class: page page-programme page-study-group
---
<div class="container">
<div class="row">
<div class="content-constrained">
<section>
<p>Explore our technical study groups, created in collaboration with available mentors, to deepen your knowledge and skills in specific areas of interest.</p>
<p>Our study groups cover a variety of topics and are designed to accommodate different schedules and experience levels. Whether you're a beginner looking to dive into a new technology or an experienced professional seeking to expand your expertise, there's a study group for you.</p>
<p>These study groups typically last anywhere from 1-2 months to longer durations, allowing participants to delve deeply into the subject matter and benefit from the guidance of experienced mentors.</p>
<p>Join our <a href="https://womencodingcommunity.slack.com/archives/C073W920RND" target="_blank"> Study Group Slack Channel</a>.</p>
</section>
</div>
</div>
</div>
<div class="container featured-content">
<section class="row">
<div class="row-content col-12">
<section>
<h2 class="card-deck-title">Active Study Groups</h2>
<div class="card-deck">
{% for stgroup in site.data.study_group %}
{% if stgroup.status == 'active' %}
<div class="card-column col-12 col-md-6 col-xl-3">
<div class="card-study-group card card-s">
<div class="card-body">
<h3 class="card-title">{{stgroup.title}}</h3>
<p>{{stgroup.description}}</p>
</div>
<div class="card-footer">
<p>Mentor: <a href="{{stgroup.link}}">{{stgroup.mentor}} </a></p>
<p>Participants: {{stgroup.participants}}</p>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</section>
</div>
</section>
</div>