-
Notifications
You must be signed in to change notification settings - Fork 0
/
equipo.html
34 lines (32 loc) · 928 Bytes
/
equipo.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
---
layout: section
title: Equipo | INNKU
description:
keywords:
---
<div class="row innku-section-title">
<div class="col-lg-12">
<h1>Socios</h1>
</div>
<div class="col-lg-offset-5 col-lg-2 col-md-offset-5 col-md-2 col-sm-offset-5 col-sm-2 col-xs-offset-4 col-xs-4">
<div class="row">
<div class="col-lg-offset-4 col-lg-4 col-md-offset-4 col-md-4 col-sm-offset-4 col-sm-4 col-xs-offset-4 col-xs-4 innku-title-divisor">
</div>
</div>
</div>
</div>
<section class="innku-section-team">
<ul class="row">
{% for team in site.data.team %}
<li class="col-lg-4 col-sm-4 col-xs-12 text-center innku-section-team-member">
<figure class="effect-oscar">
<img src="{{ team.image }}">
<figcaption>
<h2>{{ team.name }}</h2>
<p>{{ team.description}}</p>
</figcaption>
</figure>
</li>
{% endfor %}
</ul>
</section>