-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
39 lines (38 loc) · 1.94 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
<!-- 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>
<h3 class="section-subheading text-muted">SHOCK is an experienced and agile team which has developed state of the art electro-optics solutions for its customers for the last 20 years.
</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 }}">
<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">The team of engineers currently working for Shock EO Systems allow us to function as a skunk works, able to turn out innovative world class products in record time. Our team members are highly experienced in the defense industry and extremely capable as can be seen by our track record.
</p>
</div>
</div>
</div>
</section>