mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-26 12:41:23 +01:00
108 lines
4.8 KiB
HTML
108 lines
4.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
<div id="preloader" class="preloader">
|
|
<div class="loader-gplus"></div>
|
|
</div>
|
|
|
|
<div id="st-container" class="st-container">
|
|
<div class="st-pusher">
|
|
<div class="st-content">
|
|
|
|
{{ content }}
|
|
|
|
{% include footer.html %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% if page.modal != null %}
|
|
{% include speakers-modals.html %}
|
|
{% endif %}
|
|
|
|
{% if page.permalink == '/schedule/' %}
|
|
{% include sessions-modals.html %}
|
|
{% endif %}
|
|
|
|
{% include analytics.html %}
|
|
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
|
|
<script>
|
|
window.jQuery || document.write('<script src="{{ "/js/jquery-2.1.1.min.js" | prepend: site.baseurl }}><\/script>')
|
|
</script>
|
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
|
<script>
|
|
if (typeof($.fn.modal) === 'undefined') {
|
|
document.write('<script src="{{ "/js/bootstrap.min.js" | prepend: site.baseurl }}><\/script>')
|
|
}
|
|
</script>
|
|
<script src="{{ "/js/default.js" | prepend: site.baseurl }}"></script>
|
|
{% if page.permalink == '/' %}
|
|
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
|
|
{% elsif page.permalink == '/logistics/' %}
|
|
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places,geometry"></script>
|
|
{% endif %}
|
|
<script>
|
|
Waves.displayEffect();
|
|
{% if page.permalink == '/' %}
|
|
var googleMaps = 'index',
|
|
eventPlace = new google.maps.LatLng({{ site.eventPlaceCoordinates }}),
|
|
centerMap = new google.maps.LatLng({{ site.mapCenterCoordinates }}),
|
|
mobileCenterMap = new google.maps.LatLng({{ site.mapMobileCenterCoordinates }}),
|
|
icon = '{{ site.baseurl }}/img/svg/map-marker.svg';
|
|
var twitterFeedUrl = '{{ site.twitterFeed }}';
|
|
$(document).ready(function () {
|
|
$(function () {
|
|
$("#typeout-text").typed({
|
|
strings: [{{site.typeoutTextValues}}],
|
|
typeSpeed: 150,
|
|
backDelay: 900,
|
|
loop: true
|
|
});
|
|
});
|
|
var rockstarSpeakers = [
|
|
{% for speaker in site.data.speakers %}
|
|
{% if speaker.rockstar %}
|
|
{name: "{{ speaker.name }} {{ speaker.surname }}", company: "{{ speaker.company }}", image: "{{ site.baseurl | append: site.thumbnailsFolder | append: speaker.thumbnailUrl }}"}{% if forloop.index != forloop.length %},{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
];
|
|
rockstarSpeakers.sort(function() {return 0.5 - Math.random()});
|
|
if(rockstarSpeakers.length > 0) {
|
|
var animationDelay = 1500,
|
|
count = {{ site.rockstarSpeakersCount }},
|
|
colWidth = 12/count;
|
|
for(i=0; i<count; i++) {
|
|
$('#rockstar-speaker-title').after('<div class="col-md-'+ colWidth +' col-xs-6 rockstar-speakers-item animated hiding" data-animation="fadeInUp" data-delay="' + animationDelay +'"><div class="rockstar-speaker"><div class="flow-img img-circle rockstar-speaker-img" style="background-image: url(' + rockstarSpeakers[i].image + ')"></div><div class="name">' + rockstarSpeakers[i].name + '</div><div class="sub">' + rockstarSpeakers[i].company + '</div></div></div>');
|
|
animationDelay -= 500;
|
|
}
|
|
}
|
|
});
|
|
{% elsif page.permalink == '/logistics/' %}
|
|
var googleMaps = 'logistics',
|
|
eventPlace = new google.maps.LatLng({{ site.eventPlaceCoordinates }}),
|
|
centerMap = new google.maps.LatLng({{ site.logisticsMapCenterCoordinates }}),
|
|
mobileCenterMap = new google.maps.LatLng({{ site.logisticsMapMobileCenterCoordinates }}),
|
|
icon = '{{ site.baseurl }}/img/svg/map-marker.svg';
|
|
{% endif %}
|
|
</script>
|
|
<script src="{{ "/js/scripts.min.js" | prepend: site.baseurl }}"></script>
|
|
{% if page.permalink == '/schedule/' %}
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
var navHeight = $('#top-header').height();
|
|
var headerHeight = $('.track-header').first().height();
|
|
$('.stick-header').stick_in_parent({sticky_class: 'sticky', offset_top: navHeight});
|
|
$('.stick-label').stick_in_parent({offset_top: navHeight + headerHeight});
|
|
});
|
|
</script>
|
|
{% endif %}
|
|
|
|
{% include schema-event.html %}
|
|
</body>
|
|
|
|
</html>
|