mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2025-06-07 14:01:29 +02:00
Sección para el jurado
This commit is contained in:
parent
5fd6f5a8cd
commit
d9bdfcef03
5 changed files with 373 additions and 48 deletions
42
_includes/judges-list-2.html
Normal file
42
_includes/judges-list-2.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!-- Begin Speakers List 2-->
|
||||
<section id="speakers">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1 appear-animation-trigger">
|
||||
{% for speaker in site.data.judges %}
|
||||
<div class="effect-wrapper col-md-4 col-sm-6 col-xs-12 appear-animation">
|
||||
<div class="zoe-effect ribbon-activator" data-toggle="modal" data-target="#judgeDetail-{{ speaker.id }}">
|
||||
<figure class="waves-effect waves-block waves-light" style="background-image: url({{ site.baseurl | append: '/img/people/' | append: speaker.thumbnailUrl }})">
|
||||
<div class="overlay solid-overlay"></div>
|
||||
{% if speaker.ribbon != null %}
|
||||
<ul class="ribbon-wrapper">
|
||||
{% for ribbon in speaker.ribbon %}
|
||||
<li class="{{ ribbon["abbr"] | downcase }}">
|
||||
<p class="ribbon abbr">{{ ribbon["abbr"] }}</p>
|
||||
<p class="ribbon full-title">{{ ribbon["title"] }}</p>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
<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.company }}</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>
|
||||
<p class="bio">{{ speaker.bio }}</p>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Speakers List 2 -->
|
|
@ -6,7 +6,7 @@
|
|||
<h3>{{ site.judgesTitle }}</h3>
|
||||
<div class="row">
|
||||
{% assign animationDelay = 0 %} {% for judge in site.data.judges %}
|
||||
{% assign colWidth = 12 | divided_by: forloop.length %}
|
||||
{% assign colWidth = 8 | divided_by: forloop.length %}
|
||||
<div class="judge col-md-{{ colWidth }} col-xs-6 animated hiding" data-animation="fadeInDown" data-delay="{{ animationDelay }}">
|
||||
<div class="flow-img img-circle judge-img" style="background-image: url({{ site.baseurl }}/img/people/{{ judge.thumbnailUrl }})"></div>
|
||||
<p class="name">{{ judge.name }} {{ judge.surname }}</p>
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<a href="{{ site.c4pUrl }}" class="bottom-section-link btn btn-primary waves-effect waves-button waves-light waves-float" target="_blank">Become a speaker</a>
|
||||
<a href="{{ site.c4pUrl }}" class="bottom-section-link btn btn-primary waves-effect waves-button waves-light waves-float" target="_blank">Become a speaker</a>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Speakers List 2 -->
|
||||
<!-- End Speakers List 2 -->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue