-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
115 lines (114 loc) · 6.47 KB
/
team.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
---
layout: default
title: Meet our team
body_class: page page-team
---
<div class="container">
<div class="row">
<div class="row-content col-12">
<section id="team-core">
<div class="content-constrained text-center">
<h2>Core team</h2>
<p>The core team of our community is composed of visionary directors and dynamic leaders,
who bring a wealth of experience and dedication to empowering women in technology.
These esteemed professionals are committed to fostering an environment of growth, inclusivity
and support, guiding our community toward achieving its mission and goals.
</p>
</div>
<div class="card-deck mt-5">
{% for person in site.data.team %}
<div class="card-column col-12 col-sm-6 col-lg-3">
<div class="card-person card card-s">
<div class="card-media">
<img src="{{person.image}}" alt="profile photo">
</div>
<div class="card-body">
<h5 class="card-title">{{person.name}}</h5>
<h6 class="card-subtitle">{{person.position}}</h6>
<p>{{person.comment}}</p>
</div>
{% if person.network %}
<div class="card-footer">
<span class="network">
{% for network in person.network %}
{% if network.name=="linkedin" %}
<span> <a href="{{network.link}}" target="_blank"> {% include icons/linkedin.svg %}</a></span>
{% endif %}
{% if network.name=="twitter" %}
<span> <a href="{{network.link}}" target="_blank"> {% include icons/twitter.svg %}</a></span>
{% endif %}
{% if network.name=="medium" %}
<span> <a href="{{network.link}}" target="_blank"> {% include icons/medium.svg %}</a></span>
{% endif %}
{% if network.name=="github" %}
<span> <a href="{{network.link}}" target="_blank"> {% include icons/github.svg %}</a></span>
{% endif %}
{% endfor %}
</span>
</div>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</section>
<section id="team-collaborators">
<div class="content-constrained text-center">
<h2>Collaborators</h2>
<p>Our collaborators are the backbone of our community,
offering vital expertise and support that drive our initiatives forward and enhance our digital presence.
</p>
</div>
<div class="card-deck mt-5">
{% for person in site.data.collaborators %}
<div class="card-column col-12 col-sm-6 col-lg-3">
<div class="card-person card card-s">
<div class="card-media">
<img src="{{person.image}}" alt="profile photo">
</div>
<div class="card-body">
<h5 class="card-title">{{person.name}}</h5>
<h6 class="card-subtitle">{{person.position}}</h6>
<p>{{person.comment}}</p>
</div>
{% if person.network %}
<div class="card-footer">
<span class="network">
{% for network in person.network %}
{% if network.name=="linkedin" %}
<span> <a href="{{network.link}}" target="_blank"> {% include icons/linkedin.svg %}</a></span>
{% endif %}
{% if network.name=="twitter" %}
<span> <a href="{{network.link}}" target="_blank"> {% include icons/twitter.svg %}</a></span>
{% endif %}
{% if network.name=="medium" %}
<span> <a href="{{network.link}}" target="_blank"> {% include icons/medium.svg %}</a></span>
{% endif %}
{% if network.name=="github" %}
<span> <a href="{{network.link}}" target="_blank"> {% include icons/github.svg %}</a></span>
{% endif %}
{% endfor %}
</span>
</div>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</section>
</div>
</div>
</div>
<div class="container">
<div class="row featured-content">
<div class="row-content col-12">
<div class="card card-l col-12 col-md-8">
<div class="card-body">
<h2>Join us as a contributor</h2>
<p>Come contribute and make a difference! Join our vibrant community to help shape the future of technology and amplify the impact of our collective efforts.</p>
<a href="https://github.com/WomenCodingCommunity/WomenCodingCommunity.github.io#contributing" target="_blank" class="btn btn-primary">Click here to learn more</a>
</div>
</div>
</div>
</div>
</div>