Initial page based on Agency by http://startbootstrap.com
This commit is contained in:
commit
838774e06d
84 changed files with 8146 additions and 0 deletions
27
_includes/team.html
Normal file
27
_includes/team.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<!-- 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>
|
||||
</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>
|
||||
{% endfor %}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue