141 lines
4.2 KiB
HTML
141 lines
4.2 KiB
HTML
<html>
|
|
<head>
|
|
<title>YAPC::EU Interlude</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="styles.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/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-musala.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="reveal">
|
|
<div class="slides">
|
|
</div>
|
|
</div>
|
|
|
|
<script id="agenda_template" type="text/ractive">
|
|
<section id="agenda">
|
|
<table class="reveal">
|
|
<tbody>
|
|
{{#pastEvents}}
|
|
<tr class="past_event">
|
|
<td>{{startTime.format('HH:mm')}}</td>
|
|
<td>{{title}}</td>
|
|
<td>
|
|
{{#speakers}}
|
|
{{name}}
|
|
{{/speakers}}
|
|
</td>
|
|
</tr>
|
|
{{/pastEvents}}
|
|
|
|
{{#nextEvent}}
|
|
<tr class="next_event">
|
|
<td>{{startTime.format('HH:mm')}}</td>
|
|
<td>{{title}}</td>
|
|
<td>
|
|
{{#speakers}}
|
|
{{name}}
|
|
{{/speakers}}
|
|
</td>
|
|
</tr>
|
|
{{/nextEvent}}
|
|
|
|
{{#futureEvents}}
|
|
<tr class="future_event">
|
|
<td>{{startTime.format('HH:mm')}}</td>
|
|
<td>{{title}}</td>
|
|
<td>
|
|
{{#speakers}}
|
|
{{name}}
|
|
{{/speakers}}
|
|
</td>
|
|
</tr>
|
|
{{/futureEvents}}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</script>
|
|
|
|
<script id="current_talk_template" type="text/ractive">
|
|
<section id="current_talk">
|
|
<h3>At the Moment</h3>
|
|
<h1>{{currentEvent.title}}</h1>
|
|
<p>{{currentEvent.description}}</p>
|
|
</section>
|
|
</script>
|
|
|
|
<script id="current_speaker_template" type="text/ractive">
|
|
<section>
|
|
<h3>Speaker</h3>
|
|
<h1>{{name}}</h1>
|
|
<p>{{description}}</p>
|
|
</section>
|
|
</script>
|
|
|
|
<script id="next_speaker_template" type="text/ractive">
|
|
<section>
|
|
<h3>Next Speaker</h3>
|
|
<h1>{{name}}</h1>
|
|
<p>{{description}}</p>
|
|
</section>
|
|
</script>
|
|
|
|
<script id="next_talk_template" type="text/ractive">
|
|
<section id="next_talk">
|
|
<h3>Next</h3>
|
|
<h1>{{nextEvent.title}}</h1>
|
|
<p>{{nextEvent.description}}</p>
|
|
<h4>({{nextEvent.startTime.fromNow()}})</h4>
|
|
</section>
|
|
</script>
|
|
|
|
<script id="slides_template" type="text/ractive">
|
|
<section data-state="update-safe">
|
|
<h1>YAPC::EU</h1>
|
|
<h2>Sofia 2014</h2>
|
|
</section>
|
|
|
|
{{#eventCount}}
|
|
<section>
|
|
{{> agenda_template}}
|
|
|
|
{{#currentEvent}}
|
|
{{> current_talk_template}}
|
|
{{/currentEvent}}
|
|
|
|
{{#currentEvent.speakers}}
|
|
{{> current_speaker_template}}
|
|
{{/currentEvent.speakers}}
|
|
|
|
{{#nextEvent}}
|
|
{{> next_talk_template}}
|
|
{{/nextEvent}}
|
|
|
|
{{#nextEvent.speakers}}
|
|
{{> next_speaker_template}}
|
|
{{/nextEvent.speakers}}
|
|
</section>
|
|
{{/eventCount}}
|
|
|
|
<section>
|
|
<h2>Tweet</h2>
|
|
<h1>#yapceu</h1>
|
|
</section>
|
|
</script>
|
|
|
|
<script type="text/javascript" src="ractive-init.js"></script>
|
|
<script type="text/javascript" src="reveal-init.js"></script>
|
|
</body>
|
|
</html>
|