-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathteam.html
executable file
·41 lines (36 loc) · 1.16 KB
/
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
34
35
36
37
38
39
40
41
---
title: 'EmphasisO: Team'
layout: default
---
<div class="row">
{% for team in site.data.team %}
<div class="col s12 m6 l6">
<h3>
{{team.title}}
</h3>
<ul class="collection">
{% for person in team.people %}
<li class="collection-item avatar">
{% if person.image %}
<img src="/assets/images/{{person.image}}" alt="" class="circle">
{% else %}
<i class="icon ion-ios-contact circle green"></i>
{% endif %}
<span class="title" style="font-size: 1.3rem">{{person.name}}</span>
<p>{{person.position}} <br>
<a href="mailto: {{person.email}}">
{{person.email}}
</a>
<br>
{% if person.whatsapp %}
<a href="https://api.whatsapp.com/send?phone=91{{person.whatsapp}}">
{{person.whatsapp}}
</a>
{% endif %}
</p>
</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>