2014-07-28 21:27:01 +02:00
|
|
|
<!-- Begin Team List-->
|
2014-08-08 00:23:36 +02:00
|
|
|
<section id="team" class="team">
|
2014-07-28 21:27:01 +02:00
|
|
|
<div class="content-wrapper">
|
|
|
|
<div class="col-lg-10 col-lg-offset-1">
|
|
|
|
<h3>About us</h3>
|
|
|
|
<p class="text-left animated hiding" data-animation="fadeInUp" data-delay="0">{{ site.aboutUs }}</p>
|
|
|
|
</div>
|
2014-08-08 00:23:36 +02:00
|
|
|
<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>
|
2014-08-14 23:27:17 +02:00
|
|
|
{% for teamMember in site.data.team %} {% if teamMember.team != null %}
|
2014-08-08 00:23:36 +02:00
|
|
|
<div class="effect-wrapper col-md-4 col-sm-6 col-xs-12 cols-centered appear-animation">
|
2014-08-14 23:27:17 +02:00
|
|
|
<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: site.thumbnailsFolder | append: teamMember.thumbnailUrl }})">
|
2014-08-08 00:23:36 +02:00
|
|
|
<div class="overlay solid-overlay"></div>
|
2014-07-28 21:27:01 +02:00
|
|
|
<figcaption>
|
|
|
|
<div class="col-md-8 col-xs-8 text-left">
|
2014-08-14 23:27:17 +02:00
|
|
|
<h2 class="name">{{ teamMember.name }} <span>{{ teamMember.surname }}</span></h2>
|
2014-07-28 21:27:01 +02:00
|
|
|
<div class="clearfix"></div>
|
2014-08-14 23:27:17 +02:00
|
|
|
<span class="position">{{ teamMember.title }}</span>
|
2014-07-28 21:27:01 +02:00
|
|
|
</div>
|
2014-08-14 23:27:17 +02:00
|
|
|
{% for social in teamMember.social %}
|
2014-07-28 21:27:01 +02:00
|
|
|
<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 %}
|
2014-08-08 00:23:36 +02:00
|
|
|
</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>
|
2014-08-14 23:27:17 +02:00
|
|
|
{% for teamMember in site.data.team %} {% if teamMember.subTeam != null %}
|
2014-08-08 00:23:36 +02:00
|
|
|
<div class="effect-wrapper col-md-4 col-sm-6 col-xs-12 cols-centered appear-animation">
|
2014-08-14 23:27:17 +02:00
|
|
|
<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: site.thumbnailsFolder | append: teamMember.thumbnailUrl }})">
|
2014-08-08 00:23:36 +02:00
|
|
|
<div class="overlay solid-overlay"></div>
|
2014-07-28 21:27:01 +02:00
|
|
|
<figcaption>
|
|
|
|
<div class="col-md-8 col-xs-8 text-left">
|
2014-08-14 23:27:17 +02:00
|
|
|
<h2 class="name">{{ teamMember.name }} <span>{{ teamMember.surname }}</span></h2>
|
2014-07-28 21:27:01 +02:00
|
|
|
<div class="clearfix"></div>
|
2014-08-14 23:27:17 +02:00
|
|
|
<span class="position">{{ teamMember.title }}</span>
|
2014-07-28 21:27:01 +02:00
|
|
|
</div>
|
2014-08-14 23:27:17 +02:00
|
|
|
{% for social in teamMember.social %}
|
2014-07-28 21:27:01 +02:00
|
|
|
<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 -->
|