|
1 | | -<!-- Team Section --> |
2 | | - <section id="team" class="bg-light-gray"> |
3 | | - <div class="container"> |
4 | | - <div class="row"> |
5 | | - <div class="col-lg-12 text-center"> |
6 | | - <h2 class="section-heading">Meet our organizers</h2> |
7 | | - <h3 class="section-subheading text-muted"> |
8 | | - Our organizers interests range from web development |
9 | | - to data science |
10 | | - to configuration management |
11 | | - and many other topics. |
12 | | - </h3> |
13 | | - </div> |
14 | | - </div> |
15 | | - <div class="row"> |
16 | | - {% for member in site.people %} |
17 | | - <div class="col-sm-4"> |
18 | | - <div class="team-member"> |
19 | | - <img src="img/team/{{ member.pic }}.jpg" class="img-responsive img-circle" alt=""> |
20 | | - <h4>{{ member.name }}</h4> |
21 | | - <p class="text-muted">{{ member.position }}</p> |
22 | | - <ul class="list-inline social-buttons"> |
23 | | - {% for network in member.social %} |
24 | | - <li> |
25 | | - <a href="{{ network.url }}" target="_blank"> |
26 | | - <i class="fa fa-{{ network.title }}"></i> |
27 | | - </a> |
28 | | - </li> |
29 | | - {% endfor %} |
30 | | - |
31 | | - </ul> |
32 | | - </div> |
33 | | - </div> |
34 | | - {% endfor %} |
35 | | - </div> |
36 | | - <div class="row"> |
37 | | - <div class="col-lg-8 col-lg-offset-2 text-center"> |
38 | | - <p class="large text-muted"> |
39 | | - There is so much to do |
40 | | - that we would love for you to join us. |
41 | | - Do you have a passion for a Python area |
42 | | - that we don't currently handle? |
43 | | - Let us know on Meetup |
44 | | - and you can join this crew. |
45 | | - </p> |
46 | | - </div> |
47 | | - </div> |
| 1 | +<section id="team" class="bg-light-gray"> |
| 2 | + <div class="container"> |
| 3 | + <div class="row"> |
| 4 | + <div class="col-lg-12 text-center"> |
| 5 | + <h2 class="section-heading">Meet our organizers</h2> |
| 6 | + <h3 class="section-subheading text-muted"> |
| 7 | + Our organizers interests range from web development |
| 8 | + to data science |
| 9 | + to configuration management |
| 10 | + and many other topics. |
| 11 | + </h3> |
| 12 | + </div> |
| 13 | + </div> |
| 14 | + <div class="row"> |
| 15 | + {% for member in site.people %} |
| 16 | + <div class="col-sm-4"> |
| 17 | + <div class="team-member"> |
| 18 | + <img src="img/team/{{ member.pic }}.jpg" class="img-responsive img-circle" alt=""> |
| 19 | + <h4>{{ member.name }}</h4> |
| 20 | + <p class="text-muted">{{ member.position }}</p> |
| 21 | + <ul class="list-inline social-buttons"> |
| 22 | + {% for network in member.social %} |
| 23 | + <li> |
| 24 | + <a href="{{ network.url }}" target="_blank"> |
| 25 | + <i class="fa fa-{{ network.title }}"></i> |
| 26 | + </a> |
| 27 | + </li> |
| 28 | + {% endfor %} |
| 29 | + </ul> |
| 30 | + </div> |
48 | 31 | </div> |
49 | | - </section> |
| 32 | + {% endfor %} |
| 33 | + </div> |
| 34 | + <div class="row"> |
| 35 | + <div class="col-lg-8 col-lg-offset-2 text-center"> |
| 36 | + <p class="large text-muted"> |
| 37 | + There is so much to do |
| 38 | + that we would love for you to join us. |
| 39 | + Do you have a passion for a Python area |
| 40 | + that we don't currently handle? |
| 41 | + Let us know on Meetup |
| 42 | + and you can join this crew. |
| 43 | + </p> |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | +</section> |
0 commit comments