-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathteam.html
More file actions
47 lines (47 loc) · 1.54 KB
/
Copy pathteam.html
File metadata and controls
47 lines (47 loc) · 1.54 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
<section id="team" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Meet our organizers</h2>
<h3 class="section-subheading text-muted">
Our organizers interests range from web development
to data science
to configuration management
and many other topics.
</h3>
</div>
</div>
<div class="row">
{% for member in site.people %}
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/{{ member.pic }}.jpg" class="img-responsive img-circle" alt="">
<h4>{{ member.name }}</h4>
<p class="text-muted">{{ member.position }}</p>
<ul class="list-inline social-buttons">
{% for network in member.social %}
<li>
<a href="{{ network.url }}" target="_blank">
<i class="fa fa-{{ network.title }}"></i>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<p class="large text-muted">
There is so much to do
that we would love for you to join us.
Do you have a passion for a Python area
that we don't currently handle?
Let us know on Meetup
and you can join this crew.
</p>
</div>
</div>
</div>
</section>