-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
33 lines (32 loc) · 876 Bytes
/
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
---
layout: page
title: Our Team
subtitle: Who is PREMISE?
---
<div class="text-center">
{% for team in site.data.teams %}
<h2>{{ team.name }}</h2>
<div class="subtitle">
<div>{{ team.description.role }}</div>
<div>{{ team.description.responsibility }}</div>
<div>{{ team.description.expertese }}</div>
<div>{{ team.description.tools }}</div>
</div>
<ul class="team">
{% for person in team.members %}
<li>
<div class="round-image">
<img
src="/assets/img/team/{{ person.image }}"
alt="{{ person.name }}"
/>
</div>
<div class="name">
<a href="{{ person.page }}">{{ person.name }}</a>
</div>
<div class="position">{{ person.position }}</div>
</li>
{% endfor %}
</ul>
{% endfor %}
</div>