-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresearch.html
executable file
·28 lines (26 loc) · 1.21 KB
/
research.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
---
layout: default
title: research
subtitle: the stuff I think about all day long
---
<div class="row">
{% for member in site.data.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 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>