forked from gdg-x/zeppelin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
62 lines (62 loc) · 3.84 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!-- Begin Team List-->
<section id="team" class="team">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>{{ site.teamBlockTitle }}</h3>
<p class="text-left animated hiding" data-animation="fadeInUp" data-delay="0">{{ site.aboutUs }}</p>
</div>
<div class="col-lg-10 col-lg-offset-1 text-center">
<h4 class="text-left animated hiding appear-animation-trigger" data-animation="fadeInUp" data-delay="0">Organizers</h4>
{% for teamMember in site.data.team %} {% if teamMember.team != null %}
<div class="effect-wrapper col-md-4 col-sm-6 col-xs-12 cols-centered appear-animation">
<div class="zoe-effect" data-toggle="modal" data-target="#speakerDetail-{{ teamMember.id }}">
<figure class="waves-effect waves-block waves-light" style="background-image: url({{ site.baseurl | append: '/img/people/' | append: teamMember.thumbnailUrl }})">
<div class="overlay solid-overlay"></div>
<figcaption>
<div class="col-md-8 col-xs-8 text-left">
<h2 class="name">{{ teamMember.name }} <span>{{ teamMember.surname }}</span></h2>
<div class="clearfix"></div>
<span class="position">{{ teamMember.title }}</span>
</div>
{% for social in teamMember.social %}
<a href="{{ social["link"] }}" target="_blank">
<svg class="icon icon-{{ social["name"] }}" viewBox="0 0 30 32">
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-{{ social["name"] }}"></use>
</svg>
</a>
{% endfor %}
</figcaption>
</figure>
</div>
</div>
{% endif %} {% endfor %}
</div>
<div class="col-lg-10 col-lg-offset-1 text-center">
<h4 class="text-left animated hiding appear-animation-trigger" data-animation="fadeInUp" data-delay="0">Program committee</h4>
{% for teamMember in site.data.team %} {% if teamMember.subTeam != null %}
<div class="effect-wrapper col-md-4 col-sm-6 col-xs-12 cols-centered appear-animation">
<div class="zoe-effect" data-toggle="modal" data-target="#speakerDetail-{{ teamMember.id }}">
<figure class="waves-effect waves-block waves-light" style="background-image: url({{ site.baseurl | append: '/img/people/' | append: teamMember.thumbnailUrl }})">
<div class="overlay solid-overlay"></div>
<figcaption>
<div class="col-md-8 col-xs-8 text-left">
<h2 class="name">{{ teamMember.name }} <span>{{ teamMember.surname }}</span></h2>
<div class="clearfix"></div>
<span class="position">{{ teamMember.title }}</span>
</div>
{% for social in teamMember.social %}
<a href="{{ social["link"] }}" target="_blank">
<svg class="icon icon-{{ social["name"] }}" viewBox="0 0 30 32">
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-{{ social["name"] }}"></use>
</svg>
</a>
{% endfor %}
</figcaption>
</figure>
</div>
</div>
{% endif %} {% endfor %}
</div>
</div>
</section>
<!-- End Team List -->