mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2025-06-07 14:01:29 +02:00
Updated to v.0.5 https://github.com/gdg-x/zeppelin/releases/tag/v0.5
This commit is contained in:
parent
8f50469039
commit
4ae5844b2a
29 changed files with 171 additions and 181 deletions
|
@ -41,7 +41,7 @@
|
|||
<meta name="msapplication-TileImage" content="{{ "/img/favicons/mstile-144x144.png" | prepend: site.baseurl }}">
|
||||
<meta name="msapplication-config" content="{{ "/img/favicons/browserconfig.xml" | prepend: site.baseurl }}">
|
||||
|
||||
<link href="{{ "/css/main.min.css" | prepend: site.baseurl }}" rel="stylesheet">
|
||||
<link href="{{ "/css/main.css" | prepend: site.baseurl }}" rel="stylesheet">
|
||||
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<header id="top-header" class="top-header">
|
||||
<div class="overlay white-solid"></div>
|
||||
<svg id="menu-trigger" class="menu-trigger icon icon-menu visible-xs" viewBox="0 0 32 32" data-effect="st-effect">
|
||||
<svg id="menu-trigger" class="menu-trigger icon icon-menu visible-xs" viewBox="0 0 32 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-menu"></use>
|
||||
</svg>
|
||||
<a href="{{ site.baseurl }}/" id="logo-header" class="logo-header">
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
{% if slot != 404 %}
|
||||
{% for session in site.data.sessions %}
|
||||
{% if slot == session.id and session.service == null %}
|
||||
<div class="slot col-md-{{ slotColWidth }} col-xs-12 flexbox-item-height" data-slot-detail="{{ day.tracks[slotIndex].title }}" data-toggle="modal" data-target="#sessionDetail-{{ session.id }}">
|
||||
<div id="session-{{ session.id }}" class="slot col-md-{{ slotColWidth }} col-xs-12 flexbox-item-height" data-slot-detail="{{ day.tracks[slotIndex].title }}" data-toggle="modal" data-target="#sessionDetail-{{ session.id }}">
|
||||
<div class="color-line" style="background: {{ day.tracks[slotIndex].color }}"></div>
|
||||
<div class="slot-content" style="border-right-color: {{ day.tracks[slotIndex].color }}">
|
||||
<h5 class="slot-title" itemprop="name">{{ session.title }}</h5>
|
||||
|
|
|
@ -14,7 +14,15 @@
|
|||
<h4>{{ session.title }}</h4>
|
||||
<span class="theme-metadata"><span class="caption">Language: </span>{{ session.language }}</span>
|
||||
<span class="theme-metadata"><span class="caption">Complexity: </span>{{ session.complexity }}</span>
|
||||
{% if session.video %}
|
||||
<div class="theme-video embed-responsive embed-responsive-16by9">
|
||||
<iframe class="embed-responsive-item" src="{{ session.video }}"></iframe>
|
||||
</div>
|
||||
{% endif %}
|
||||
<p class="theme-description">{{ session.description }}</p>
|
||||
{% if session.presentation %}
|
||||
<a class="theme-presentation" href="{{ session.presentation }}" title="Presentation" target="_blank">View presentation</a>
|
||||
{% endif %}
|
||||
<hr>
|
||||
<div class="people-details">
|
||||
{% for speaker in site.data.speakers %}
|
||||
|
|
|
@ -19,7 +19,15 @@
|
|||
<h4>{{ session.title }}</h4>
|
||||
<span class="theme-metadata"><span class="caption">Language: </span>{{ session.language }}</span>
|
||||
<span class="theme-metadata"><span class="caption">Complexity: </span>{{ session.complexity }}</span>
|
||||
{% if session.video %}
|
||||
<div class="theme-video embed-responsive embed-responsive-16by9">
|
||||
<iframe class="embed-responsive-item" src="{{ session.video }}"></iframe>
|
||||
</div>
|
||||
{% endif %}
|
||||
<p class="theme-description">{{ session.description }}</p>
|
||||
{% if session.presentation %}
|
||||
<a class="theme-presentation" href="{{ session.presentation }}" title="Presentation" target="_blank">View presentation</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue