2014-08-15 16:02:40 +02:00
|
|
|
<!-- Begin Sessions Modals -->
|
2014-08-14 23:27:17 +02:00
|
|
|
<div class="modals" class="modals">
|
|
|
|
{% for session in site.data.sessions %}
|
|
|
|
<div class="modal fade text-left people-modal" id="sessionDetail-{{ session.id }}" tabindex="-1" role="dialog" aria-labelledby="sessionDetailLabel-{{ session.id }}" aria-hidden="true">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-body">
|
|
|
|
<div class="close">
|
|
|
|
<svg class="icon icon-cross" viewBox="0 0 32 32">
|
|
|
|
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-cross"></use>
|
|
|
|
</svg>
|
|
|
|
<div class="close-mask" data-dismiss="modal"></div>
|
|
|
|
</div>
|
|
|
|
<h4>{{ session.title }}</h4>
|
2015-03-05 10:58:31 +01:00
|
|
|
{% if session.language != null %}
|
2014-08-17 23:31:26 +02:00
|
|
|
<span class="theme-metadata"><span class="caption">Language: </span>{{ session.language }}</span>
|
2015-03-05 10:58:31 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if session.complexity != null %}
|
2014-08-17 23:31:26 +02:00
|
|
|
<span class="theme-metadata"><span class="caption">Complexity: </span>{{ session.complexity }}</span>
|
2015-03-05 10:58:31 +01:00
|
|
|
{% endif %}
|
2014-11-14 17:56:12 +01:00
|
|
|
{% if session.video %}
|
|
|
|
<div class="theme-video embed-responsive embed-responsive-16by9">
|
|
|
|
<iframe class="embed-responsive-item" src="{{ session.video }}"></iframe>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2014-08-14 23:27:17 +02:00
|
|
|
<p class="theme-description">{{ session.description }}</p>
|
2014-11-14 17:56:12 +01:00
|
|
|
{% if session.presentation %}
|
|
|
|
<a class="theme-presentation" href="{{ session.presentation }}" title="Presentation" target="_blank">View presentation</a>
|
|
|
|
{% endif %}
|
2014-08-14 23:27:17 +02:00
|
|
|
<hr>
|
|
|
|
<div class="people-details">
|
|
|
|
{% for speaker in site.data.speakers %}
|
|
|
|
{% for session_speaker in session.speakers %}
|
|
|
|
{% if session_speaker == speaker.id %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-2 col-sm-2">
|
2014-08-29 16:57:46 +02:00
|
|
|
<div class="flow-img img-circle people-img" style="background-image: url({{ site.baseurl | append: '/img/people/' | append: speaker.thumbnailUrl }})"></div>
|
2014-08-14 23:27:17 +02:00
|
|
|
</div>
|
|
|
|
<div class="col-md-10 col-sm-10 details">
|
|
|
|
<p class="name">{{ speaker.name }} {{ speaker.surname }}
|
|
|
|
<span class="position">{{ speaker.title }}, {{ speaker.company }}</span>
|
|
|
|
</p>
|
|
|
|
{% if speaker.ribbon != null %}
|
|
|
|
<div class="modal-ribbon-wrapper">
|
|
|
|
{% for ribbon in speaker.ribbon %}
|
2014-09-29 17:25:11 +02:00
|
|
|
<a class="modal-ribbon" href="{{ ribbon["url"] }}" target="_blank">{{ ribbon["title"] }}</a>
|
2014-08-14 23:27:17 +02:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<p class="about">{{ speaker.bio }}</p>
|
|
|
|
<ul class="social">
|
|
|
|
{% for social in speaker.social %}
|
|
|
|
<li>
|
|
|
|
<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>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<!-- End Speakers Modals -->
|