interlude/index.html

119 lines
4.0 KiB
HTML
Raw Normal View History

2014-05-13 07:27:47 +03:00
<html>
<head>
<title>The IT Tour</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/2.6.2/css/reveal.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/2.6.2/css/theme/night.css">
<link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,300,400italic,400,700italic,700&subset=latin,cyrillic">
<link rel="stylesheet" type="text/css" href="background.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/2.6.2/lib/js/head.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/2.6.2/js/reveal.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.6.0/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.6.0/lang/bg.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ractive.js/0.3.7/ractive.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<script src="schedule.js"></script>
</head>
<body>
<div class="reveal">
<div class="slides">
</div>
</div>
<video id="background_video" src="cropped-background.mp4" loop autoplay />
<script id="agenda_template" type="text/ractive">
<section id="agenda">
<table class="reveal">
<thead>
<tr>
<th>
Час
</th>
<th>
Лекция
</th>
2014-05-13 15:43:58 +03:00
<th>
Лектор
</th>
2014-05-13 07:27:47 +03:00
</tr>
</thead>
<tbody>
2014-05-13 15:43:58 +03:00
{{#pastEvents}}
<tr class="past_event">
<td>{{startTime.format('HH:mm')}}</td>
<td>{{title}}</td>
<td>{{lecturer.name}}</td>
</tr>
{{/pastEvents}}
{{#nextEvent}}
<tr class="next_event">
<td>{{startTime.format('HH:mm')}}</td>
<td>{{title}}</td>
<td>{{lecturer.name}}</td>
</tr>
{{/nextEvent}}
{{#futureEvents}}
<tr class="future_event">
2014-05-13 07:27:47 +03:00
<td>{{startTime.format('HH:mm')}}</td>
<td>{{title}}</td>
2014-05-13 15:43:58 +03:00
<td>{{lecturer.name}}</td>
2014-05-13 07:27:47 +03:00
</tr>
2014-05-13 15:43:58 +03:00
{{/futureEvents}}
2014-05-13 07:27:47 +03:00
</tbody>
</table>
</section>
</script>
<script id="next_lecture_template" type="text/reactive">
<section id="next-lecture">
<h3>Следва</h3>
2014-05-13 15:43:58 +03:00
<h1>{{nextEvent.title}}</h1>
<p>{{nextEvent.description}}</p>
<h4>({{nextEvent.startTime.fromNow()}})</h4>
2014-05-13 07:27:47 +03:00
</section>
</script>
<script id="next_lecturer_template" type="text/reactive">
<section id="next-lecturer">
<h3>Лектор</h3>
2014-05-13 15:43:58 +03:00
<h1>{{nextEvent.lecturer.name}}</h1>
<p>{{nextEvent.lecturer.description}}</p>
2014-05-13 07:27:47 +03:00
</section>
</script>
<script id="slides_template" type="text/ractive">
<section data-state="update-safe">
<img src="logo.svg">
</section>
2014-05-13 15:43:58 +03:00
{{#eventCount}}
2014-05-13 07:27:47 +03:00
{{> agenda_template}}
2014-05-13 15:43:58 +03:00
{{/eventCount}}
2014-05-13 07:27:47 +03:00
2014-05-13 15:43:58 +03:00
{{#nextEvent}}
2014-05-13 07:27:47 +03:00
{{> next_lecture_template}}
2014-05-13 15:43:58 +03:00
{{/nextEvent}}
2014-05-13 07:27:47 +03:00
2014-05-13 15:43:58 +03:00
{{#nextEvent.lecturer}}
2014-05-13 07:27:47 +03:00
{{> next_lecturer_template}}
2014-05-13 15:43:58 +03:00
{{/nextEvent.lecturer}}
2014-05-13 07:27:47 +03:00
<section>
<h1>#PlovdivConf</h1>
<a class="twitter-timeline" href="https://twitter.com/search?q=%23PlovdivConf" data-widget-id="466029214940925952">Tweets about "#PlovdivConf"</a>
<script src="https://platform.twitter.com/widgets.js" id="twitter-wjs"></script>
</section>
</script>
<script type="text/javascript" src="reactive-init.js"></script>
<script type="text/javascript" src="reveal-init.js"></script>
</body>
</html>