Skip to content

Instantly share code, notes, and snippets.

@y7kim
Last active August 29, 2015 14:23
Show Gist options
  • Save y7kim/b383b36b843ac6e454b1 to your computer and use it in GitHub Desktop.
Save y7kim/b383b36b843ac6e454b1 to your computer and use it in GitHub Desktop.
<div class="row">
<div class="col-sm-4 col-sm-offset-2">
<div class="team-member">
<img src="img/team/{{ site.people[0].pic }}.jpg" class="img-responsive img-circle" alt="">
<h4>{{ site.people[0].name }}</h4>
<p class="text-muted">{{ site.people[0].position }}</p>
<ul class="list-inline social-buttons">
{% for network in site.people[0].social %}
<li><a href="{{ network.url }}"><i class="fa fa-{{ network.title }}"></i></a>
{% endfor %}
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/{{ site.people[1].pic }}.jpg" class="img-responsive img-circle" alt="">
<h4>{{ site.people[1].name }}</h4>
<p class="text-muted">{{ site.people[1].position }}</p>
<ul class="list-inline social-buttons">
{% for network in site.people[1].social %}
<li><a href="{{ network.url }}"><i class="fa fa-{{ network.title }}"></i></a>
{% endfor %}
</ul>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment