-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
442 lines (286 loc) · 16.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<meta property="og:type" content="website" />
<meta property="og:image" content="https://2016.pycon.sk/static/images/logo/pycon_sk_logo200_notext.png" />
<meta property="og:url" content="https://www.pycon.sk/" />
<meta property="og:title" content="PyCon SK 2017 - 10-12.03.2017, Bratislava" />
<meta property="og:site_name" content="www.pycon.sk" />
<meta property="og:description" content="PyCon SK is a community-organized conference for the Python programming language, which will be held in Bratislava on 10th - 12th March, 2017." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@pyconsk" />
<meta name="twitter:title" content="PyCon SK 2017 - 10-12.03.2017, Bratislava" />
<meta name="twitter:description" content="PyCon SK is a community-organized conference for the Python programming language, which will be held in Bratislava on 10th - 12th March, 2017." />
<meta name="twitter:url" content="https://www.pycon.sk" />
<meta name="twitter:image" content="https://2016.pycon.sk/static/images/logo/pycon_sk_logo200_notext.png" />
<meta name="google-site-verification" content="W8iyFASCV4ptNkWc9_EEu-uRuQ5UBtH1ulvKndInaJM" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="/static/konfera/css/pycon.css">
<link rel="icon" href="/static/konfera/images/favicon.ico" sizes="16x16">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="/">
<img class="navbar-brand navbar-logo" src="/static/images/logo/pycon.svg" alt="Home" >
<span class="navbar-brand">PyCon SK</span>
</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse hidden-print" id="navbar-main">
<ul class="nav navbar-nav">
<li class=" ">
<a href="/venue/" >
Venue
</a>
</li>
<li class="dropdown ">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
Schedule
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation" >
<a role="menuitem" href="/schedule/2017-03-10/" >Friday, 10th</a>
</li>
<li role="presentation" >
<a role="menuitem" href="/schedule/2017-03-11/" >Saturday, 11th</a>
</li>
<li role="presentation" >
<a role="menuitem" href="/schedule/2017-03-12/" >Sunday, 12th</a>
</li>
</ul>
</li>
<li class=" ">
<a href="/speakers/" >
Speakers
</a>
</li>
<li class=" ">
<a href="/edu-track/" >
EduTrack
</a>
</li>
<li class=" ">
<a href="/sponsors/" >
Sponsors
</a>
</li>
<li class=" ">
<a href="/code-of-conduct/" >
Code of Conduct
</a>
</li>
<li class=" ">
<a href="/about-us/" >
About Us
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container" id="content" role="main">
<!-- content -->
<div class="row">
<div class="col-md-8">
<h1>Ďakujeme za účasť!</h1>
<p class="lead">PyCon SK je komunitou organizovaná konferencia pre programovací jazyk Python. <strong>Druhý ročník</strong> sa uskutočnil <strong>10. 3. 2017 až 12. 3. 2017 v Bratislave</strong>.</p>
<!--
<div class="row">
<div class="col-lg-8 text-center">
<iframe width="510" height="304" src="https://www.youtube.com/embed/Agjvv2R6CXw" frameborder="0" seamless="true" allowfullscreen></iframe>
<iframe width="510" height="304" src="https://www.youtube.com/embed/IIZI3M7nKLo" frameborder="0" seamless="true" allowfullscreen></iframe>
</div>
<div class="col-lg-4 text-center">
<iframe src="https://app.sli.do/event/u7rr4n3i" class="seamless slido-app" seamless="true"></iframe>
</div>
</div>
<br /><br />
<h2>PyCon SK Dinner</h2>
<p class="text-justify">We have a small announcement today's dinner. You can register in the cloak room, and you will receive a blue lanyard and a PyCoin for the free welcome drink.</p>
<p class="text-justify">Dinner venue is Flag Ship: <a href="http://www.bratislavskarestauracia.sk/en/" target="_blank">http://www.bratislavskarestauracia.sk/en/</a></p>
<p class="text-justify">Bratislava Flag Ship Restaurant is in the city center:<br /><br />
Námestie SNP č. 8<br />
811 02 Bratislava</p>
<p class="text-justify">Dinner will start at 8 p.m., and there will be a meal in the form of a buffet menu.<br /><br />
Looking forward to seeing you at the dinner.</p>
<p class="lead">PyCon SK is a community-organized conference for the Python programming language</p>
-->
<p class="lead">
<a href="https://www.python.org/" target="_blank" title="Python homepage" onclick="trackOutboundLink('https://www.python.org/');">
<img src="/static/images/logo/pycon_date_2017.svg" alt="PyCon SK" class="img-responsive center-block">
</a>
</p>
<div class="row icon-menu text-center">
<div class="col-xs-3"></div>
<div class="col-xs-3"><a href="/photos"><span class="glyphicon glyphicon-picture" aria-hidden="true"></span><br>Photos</a></div>
<div class="col-xs-3"><a href="/videos"><span class="glyphicon glyphicon-facetime-video" aria-hidden="true"></span><br>Videos</a></div>
<div class="col-xs-3"></div>
</div>
<br>
<p class="text-justify">After successful organization in more than 40 countries, PyCon was in Slovakia in 2016. We have really enjoyed the conference, and already started to prepare for next year. <!-- We are happy to announce that second PyCon SK will be held <strong>in Bratislava on 10th - 12th March, 2017</strong>. -->
</p>
<h2>PyCon SK under the patronage of President Andrej Kiska</h2>
<p class="text-justify">We are proud to announce that PyCon SK 2017 will be again under patronage of Slovak President Andrej Kiska.</p>
<p class="text-center"><a href="https://www.prezident.sk/en/" target="_blank"><img class="img-thumbnail" src="https://www.prezident.sk/upload-files/15961.jpg" alt="Mr. Andrej Kiska" width="165px" /></a></p>
<!--
<p class="text-center">
<a href="/schedule/2017-03-10/" class="btn btn-warning btn-lg" onclick="ga('send', 'event', 'button', 'click', 'cta-landing-page-schedule');">
<span class="glyphicon glyphicon glyphicon-sunglasses" aria-hidden="true"></span> Check out the schedule</a>
</p>
-->
<h2>Social events</h2>
<p class="text-justify"><strong>On Friday there will be Kiwi secret party.</strong><br/>If you are interested, stop by at Kiwi booth for more information about how to get to the party.</p>
<p class="text-justify">We have prepared Saturday night social event. <strong>You have to buy a separate ticket to be part of the Saturday night evening dinner</strong>.</p>
<!--
<p class="text-center">
<a href="/tickets/" class="btn btn-warning btn-lg" onclick="ga('send', 'event', 'button', 'click', 'cta-landing-page-ticket');">
<span class="glyphicon glyphicon-cutlery" aria-hidden="true"></span> Buy dinner ticket</a>
</p>
<hr>
<p>If you wish to support us, become a volunteer and help with organizing of PyCon SK (which is entirely run by volunteers) we'd be happy to talk with you and discuss your ideas. Please send us an email to: <a href="mailto:[email protected]" onclick="trackOutboundLink('mailto:info%40pycon.sk');">[email protected]</a>.</p>
<p>In the meantime you can attend our regular <a href="https://2016.pycon.sk/en/meetup.html" onclick="trackOutboundLink('https://2016.pycon.sk/en/meetup.html');">meetups</a>.</p>
-->
</div>
<div class="col-md-4">
<!-- right_nav -->
<div class="text-center right-nav hidden-print">
<h4><mark class="platinum">Platinum:</mark></h4>
<ul class="list-unstyled">
<li>
<a href="https://exponea.com" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-exponea'); trackOutboundLink('https://exponea.com');">
<img src="media/Exponea_logo.svg" alt="Exponea" class="platinum" />
</a>
</li>
<li>
<a href="https://www.kiwi.com/" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-kiwicom'); trackOutboundLink('https://www.kiwi.com/');">
<img src="media/kiwicom-logo.png" alt="kiwi.com" class="platinum" />
</a>
</li>
<li>
<a href="https://www.python.org/psf" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-python-software-foundation'); trackOutboundLink('https://www.python.org/psf');">
<img src="media/psf-logo.svg" alt="Python Software Foundation" class="platinum" />
</a>
</li>
</ul>
<br><hr>
<h4><mark class="gold">Gold:</mark></h4>
<ul class="list-unstyled">
<li>
<a href="https://www.eset.com/sk" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-eset'); trackOutboundLink('https://www.eset.com/sk');">
<img src="media/eset-logo.svg" alt="Eset" class="gold" />
</a>
</li>
<li>
<a href="https://www.kistler.com/" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-kistler'); trackOutboundLink('https://www.kistler.com/');">
<img src="media/Kistler_logo_UzNPWfz.svg" alt="Kistler" class="gold" />
</a>
</li>
<li>
<a href="https://www.redhat.com/" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-red-hat'); trackOutboundLink('https://www.redhat.com/');">
<img src="media/redhat-logo.svg" alt="Red Hat" class="gold" />
</a>
</li>
</ul>
<br><hr>
<h4><mark class="silver">Silver:</mark></h4>
<ul class="list-unstyled">
<li>
<a href="http://www.bbi-intl.com" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-bbi-international'); trackOutboundLink('http://www.bbi-intl.com');">
<img src="media/bbi_RGPXK8b.png" alt="BBI International" class="silver" />
</a>
</li>
<li>
<a href="https://danubecloud.org/" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-danube-cloud'); trackOutboundLink('https://danubecloud.org/');">
<img src="media/danube_cloud_logo__pycon.svg" alt="Danube Cloud" class="silver" />
</a>
</li>
<li>
<a href="https://google.com/" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-google'); trackOutboundLink('https://google.com/');">
<img src="media/Google_logo.svg" alt="Google" class="silver" />
</a>
</li>
<li>
<a href="https://switzerlab.com" target="_blank" onclick="ga('send', 'event', 'sponsor', 'click', 'sponsors-panel-switzerlab'); trackOutboundLink('https://switzerlab.com');">
<img src="media/switzerlab-logo.png" alt="Switzerlab" class="silver" />
</a>
</li>
</ul>
<br><hr>
</div>
</div>
</div>
<!-- content end -->
<footer class="hidden-print">
<div class="row">
</div>
<div class="row">
<div class="col-md-12">
<ul class="list-unstyled">
<li><a href="https://facebook.com/pyconsk" onclick="trackOutboundLink('https://facebook.com/pyconsk');">Facebook</a></li>
<li><a href="https://twitter.com/pyconsk" onclick="trackOutboundLink('https://twitter.com/pyconsk');">Twitter</a></li>
<li><a href="https://www.linkedin.com/company/spy-o--z-" onclick="trackOutboundLink('https://www.linkedin.com/company/spy-o--z-');">LinkedIn</a></li>
<li>
<a href="https://plus.google.com/u/0/b/114745643590416178453/114745643590416178453/posts" onclick="trackOutboundLink('https://plus.google.com/u/0/b/114745643590416178453/114745643590416178453/posts');">Google+</a>
</li>
<li><a href="https://pyconsk.slack.com" onclick="trackOutboundLink('https://pyconsk.slack.com');">Slack</a></li>
<li><a href="https://github.com/pyconsk" onclick="trackOutboundLink('https://github.com/pyconsk');">GitHub</a></li>
<li><a href="/about-us/">Civic association</a></li>
<li>
<a href="mailto:info%40pycon.sk" onclick="trackOutboundLink('mailto:info%40pycon.sk');"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span>
</li>
<li class="pull-right">
<a href="https://2016.pycon.sk/" onclick="trackOutboundLink('https://2016.pycon.sk/');">PyCon SK 2016</a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<small class="text-center"><a href="https://www.python.org/psf/trademarks/pycon/" target="_blank" onclick="trackOutboundLink('https://www.python.org/psf/trademarks/pycon/');">PyCon™</a> is a trademark for worldwide conference activities claimed by the <a href="https://www.python.org/psf-landing/" target="_blank" onclick="trackOutboundLink('https://www.python.org/psf-landing/');">Python Software foundation</a>.</small>
</div>
</div>
</footer>
</div> <!-- container end -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/svgeezy/1.0/svgeezy.min.js"></script>
<script>svgeezy.init(false, 'png');</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous">
</script>
<!-- GA -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-69278502-1', 'auto');
ga('send', 'pageview');
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<!-- end GA -->
</body>
</html>