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">
|
2014-05-13 16:03:53 +03:00
|
|
|
|
<link rel="stylesheet" type="text/css" href="styles.css">
|
2014-05-13 07:27:47 +03:00
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
2014-05-13 16:41:55 +03:00
|
|
|
|
<video id="background_video" src="background.mp4" loop autoplay />
|
2014-05-13 07:27:47 +03:00
|
|
|
|
|
|
|
|
|
<script id="agenda_template" type="text/ractive">
|
|
|
|
|
<section id="agenda">
|
|
|
|
|
<table class="reveal">
|
|
|
|
|
<tbody>
|
2014-05-13 15:43:58 +03:00
|
|
|
|
{{#pastEvents}}
|
|
|
|
|
<tr class="past_event">
|
|
|
|
|
<td>{{startTime.format('HH:mm')}}</td>
|
|
|
|
|
<td>{{title}}</td>
|
2014-07-10 13:08:22 +03:00
|
|
|
|
<td>
|
|
|
|
|
{{#speakers}}
|
|
|
|
|
{{name}}
|
|
|
|
|
{{/speakers}}
|
|
|
|
|
</td>
|
2014-05-13 15:43:58 +03:00
|
|
|
|
</tr>
|
|
|
|
|
{{/pastEvents}}
|
|
|
|
|
|
|
|
|
|
{{#nextEvent}}
|
|
|
|
|
<tr class="next_event">
|
|
|
|
|
<td>{{startTime.format('HH:mm')}}</td>
|
|
|
|
|
<td>{{title}}</td>
|
2014-07-10 13:08:22 +03:00
|
|
|
|
<td>
|
|
|
|
|
{{#speakers}}
|
|
|
|
|
{{name}}
|
|
|
|
|
{{/speakers}}
|
|
|
|
|
</td>
|
2014-05-13 15:43:58 +03:00
|
|
|
|
</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-07-10 13:08:22 +03:00
|
|
|
|
<td>
|
|
|
|
|
{{#speakers}}
|
|
|
|
|
{{name}}
|
|
|
|
|
{{/speakers}}
|
|
|
|
|
</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>
|
|
|
|
|
|
2014-06-21 05:08:15 +03:00
|
|
|
|
<script id="current_talk_template" type="text/ractive">
|
|
|
|
|
<section id="current_talk">
|
|
|
|
|
<h3>В момента</h3>
|
|
|
|
|
<h1>{{currentEvent.title}}</h1>
|
|
|
|
|
<p>{{currentEvent.description}}</p>
|
|
|
|
|
</section>
|
|
|
|
|
</script>
|
|
|
|
|
|
2014-07-10 13:08:22 +03:00
|
|
|
|
<script id="speaker_template" type="text/ractive">
|
|
|
|
|
<section>
|
2014-06-21 05:08:15 +03:00
|
|
|
|
<h3>Лектор</h3>
|
2014-07-10 13:08:22 +03:00
|
|
|
|
<h1>{{name}}</h1>
|
|
|
|
|
<p>{{description}}</p>
|
2014-06-21 05:08:15 +03:00
|
|
|
|
</section>
|
|
|
|
|
</script>
|
|
|
|
|
|
2014-05-13 16:03:53 +03:00
|
|
|
|
<script id="next_talk_template" type="text/ractive">
|
2014-05-13 15:59:51 +03:00
|
|
|
|
<section id="next_talk">
|
2014-05-13 07:27:47 +03:00
|
|
|
|
<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="slides_template" type="text/ractive">
|
|
|
|
|
<section data-state="update-safe">
|
2015-08-12 21:03:56 +03:00
|
|
|
|
<img src="http://varnaconf.com/system/uploads/event/logo/15/main_image.png">
|
2014-05-13 07:27:47 +03:00
|
|
|
|
</section>
|
|
|
|
|
|
2014-05-13 15:43:58 +03:00
|
|
|
|
{{#eventCount}}
|
2014-05-13 15:52:30 +03:00
|
|
|
|
<section>
|
|
|
|
|
{{> agenda_template}}
|
2014-05-13 07:27:47 +03:00
|
|
|
|
|
2014-06-21 05:08:15 +03:00
|
|
|
|
{{#currentEvent}}
|
|
|
|
|
{{> current_talk_template}}
|
|
|
|
|
{{/currentEvent}}
|
|
|
|
|
|
2014-07-10 13:08:22 +03:00
|
|
|
|
{{#currentEvent.speakers}}
|
|
|
|
|
{{> speaker_template}}
|
|
|
|
|
{{/currentEvent.speakers}}
|
2014-06-21 05:08:15 +03:00
|
|
|
|
|
2014-05-13 15:52:30 +03:00
|
|
|
|
{{#nextEvent}}
|
2014-05-13 15:59:51 +03:00
|
|
|
|
{{> next_talk_template}}
|
2014-05-13 15:52:30 +03:00
|
|
|
|
{{/nextEvent}}
|
2014-05-13 07:27:47 +03:00
|
|
|
|
|
2014-07-10 13:08:22 +03:00
|
|
|
|
{{#nextEvent.speakers}}
|
|
|
|
|
{{> speaker_template}}
|
|
|
|
|
{{/nextEvent.speakers}}
|
2014-05-13 15:52:30 +03:00
|
|
|
|
</section>
|
|
|
|
|
{{/eventCount}}
|
2014-05-13 07:27:47 +03:00
|
|
|
|
|
2014-06-21 04:28:41 +03:00
|
|
|
|
<!-- <section> -->
|
|
|
|
|
<!-- <h1>Обратна връзка</h1> -->
|
2015-08-12 21:03:56 +03:00
|
|
|
|
<!-- <h2>http://bit.ly/varnaconf-2015-feedback</h2> -->
|
2014-06-21 04:28:41 +03:00
|
|
|
|
<!-- </section> -->
|
|
|
|
|
|
2014-05-13 07:27:47 +03:00
|
|
|
|
<section>
|
2015-08-12 21:03:56 +03:00
|
|
|
|
<h1>#VarnaConf</h1>
|
2014-07-12 09:06:43 +03:00
|
|
|
|
<h2>В Twitter и IRC на irc.it-tour.bg</h2>
|
2015-08-12 21:03:56 +03:00
|
|
|
|
<!-- <a class="twitter-timeline" href="https://twitter.com/search?q=%23VarnaConf" data-widget-id="466029214940925952">Tweets about "#VarnaConf"</a> -->
|
2014-06-21 04:28:41 +03:00
|
|
|
|
<!-- <script src="https://platform.twitter.com/widgets.js" id="twitter-wjs"></script> -->
|
2014-05-13 07:27:47 +03:00
|
|
|
|
</section>
|
|
|
|
|
</script>
|
|
|
|
|
|
2014-05-13 16:03:53 +03:00
|
|
|
|
<script type="text/javascript" src="ractive-init.js"></script>
|
2014-05-13 07:27:47 +03:00
|
|
|
|
<script type="text/javascript" src="reveal-init.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|