-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathteam.html
More file actions
38 lines (37 loc) · 1.73 KB
/
Copy pathteam.html
File metadata and controls
38 lines (37 loc) · 1.73 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
<!-- Team Section -->
<section id="team" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Amazing Team</h2>
<br>
<!-- <h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</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="" style="height: 200px">
<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 }}">
<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">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.</p>
</div>
</div> -->
</div>
</section>