mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2025-06-07 22:11:29 +02:00
Initial commit
This commit is contained in:
parent
8e3b6da84f
commit
95607eea61
241 changed files with 14242 additions and 3 deletions
63
_includes/team.html
Normal file
63
_includes/team.html
Normal file
|
@ -0,0 +1,63 @@
|
|||
<!-- Begin Team List-->
|
||||
<section id="team">
|
||||
<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>
|
||||
<div class="col-lg-10 col-lg-offset-1 row-centered">
|
||||
<h4 class="text-left animated hiding" data-animation="fadeInUp" data-delay="0">Organizers</h4>
|
||||
{% for speaker in site.data.team %} {% if speaker.team != null %}
|
||||
<div class="team-item-wrapper col-md-4 col-sm-6 col-xs-12 cols-centered">
|
||||
<div class="team-item animated waves-element waves-block waves-light hiding increment-animation" data-animation="fadeInUp" data-delay="100" data-toggle="modal" data-target="#speakerDetail-{{ speaker.id }}">
|
||||
<figure class="flow-img" style="background-image: url({{ site.baseurl | append: site.thumbnailsFolder | append: speaker.thumbnailUrl }})">
|
||||
<div class="overlay"></div>
|
||||
<figcaption>
|
||||
<div class="col-md-8 col-xs-8 text-left">
|
||||
<h2 class="name">{{ speaker.name }} <span>{{ speaker.surname }}</span></h2>
|
||||
<div class="clearfix"></div>
|
||||
<span class="position">{{ speaker.title }}</span>
|
||||
</div>
|
||||
{% for social in speaker.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 class="clearfix"></div>
|
||||
<h4 class="text-left animated hiding" data-animation="fadeInUp" data-delay="0">Program committee</h4>
|
||||
{% for speaker in site.data.team %} {% if speaker.subTeam != null %}
|
||||
<div class="team-item-wrapper col-md-4 col-sm-6 col-xs-12 cols-centered">
|
||||
<div class="team-item animated waves-element waves-block waves-light hiding increment-animation" data-animation="fadeInUp" data-delay="100" data-toggle="modal" data-target="#speakerDetail-{{ speaker.id }}">
|
||||
<figure class="flow-img" style="background-image: url({{ site.baseurl | append: site.thumbnailsFolder | append: speaker.thumbnailUrl }})">
|
||||
<div class="overlay"></div>
|
||||
<figcaption>
|
||||
<div class="col-md-8 col-xs-8 text-left">
|
||||
<h2 class="name">{{ speaker.name }} <span>{{ speaker.surname }}</span></h2>
|
||||
<div class="clearfix"></div>
|
||||
<span class="position">{{ speaker.title }}</span>
|
||||
</div>
|
||||
{% for social in speaker.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 -->
|
Loading…
Add table
Add a link
Reference in a new issue