-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
994 lines (934 loc) · 46.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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
<!doctype html>
<html class="no-js" lang="cs">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<!-- The above 3 meta tags *must* come first in the head -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-140964064-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-140964064-1');
</script>
<!-- SITE TITLE -->
<title>RETRIP - minifestival retroherní popkultury</title>
<meta name="description" content="RETRIP - retroherní víkend, Lipnice"/>
<meta name="keywords" content="RETRIP, tehdy, retroherní festival, retrohry, retroherna, retrohraní"/>
<meta name="author" content="TEHDY"/>
<!-- twitter card starts from here, if you don't need remove this section -->
<meta name="twitter:card" content="summary"/>
<meta name="twitter:site" content="@luborkopecky"/>
<meta name="twitter:creator" content="@luborkopecky"/>
<meta name="twitter:url" content="http://retrip.eu"/>
<meta name="twitter:title" content="RETRIP | 19. červen 2021 | Lipnice nad Sázavou"/>
<!-- maximum 140 char -->
<meta name="twitter:description" content="RETRIP - slavnosti archivních her, 19. červen 2021, Lipnice nad Sázavou"/>
<!-- maximum 140 char -->
<!-- <meta name="twitter:image" content="assets/img/twittercardimg/twittercard-280-150.jpg"/> -->
<!-- when you post this page url in twitter , this image will be shown -->
<!-- twitter card ends from here -->
<!-- facebook open graph starts from here, if you don't need then delete open graph related -->
<meta property="og:title" content="RETRIP - retroherní minifestival"/>
<meta property="og:url" content="http://retrip.eu"/>
<meta property="og:locale" content="cz"/>
<meta property="og:site_name" content="RETRIP - retroherní minifestival"/>
<!--meta property="fb:admins" content="" /--> <!-- use this if you have -->
<meta property="og:type" content="website"/>
<meta property="og:image" content="assets/img/opengraph/fbphoto.jpg"/>
<!-- when you post this page url in facebook , this image will be shown -->
<!-- facebook open graph ends from here -->
<!-- FAVICON AND TOUCH ICONS -->
<!-- BOOTSTRAP CSS -->
<link rel="stylesheet" href="assets/libs/bootstrap/css/bootstrap.min.css" media="all"/>
<!-- FONT AWESOME -->
<link rel="stylesheet" href="assets/libs/fontawesome/css/font-awesome.min.css" media="all"/>
<!-- FONT AWESOME -->
<link rel="stylesheet" href="assets/libs/maginificpopup/magnific-popup.css" media="all"/>
<!-- Time Circle -->
<link rel="stylesheet" href="assets/libs/timer/TimeCircles.css" media="all"/>
<!-- OWL CAROUSEL CSS -->
<link rel="stylesheet" href="assets/libs/owlcarousel/owl.carousel.min.css" media="all" />
<link rel="stylesheet" href="assets/libs/owlcarousel/owl.theme.default.min.css" media="all" />
<!-- GOOGLE FONT -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Oswald:400,700%7cLora:400,400i,700,700i&subset=latin,latin-ext"/>
<link rel="stylesheet" href="assets/libs/animate/animate.css" media="all" />
<!-- MASTER STYLESHEET -->
<link id="lgx-master-style" rel="stylesheet" href="assets/css/style-default.min.css" media="all"/>
<!-- MODERNIZER CSS -->
<script src="assets/js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body class="home">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="lgx-container ">
<!-- *** ADD YOUR SITE CONTENT HERE *** -->
<!--HEADER-->
<header>
<div id="lgx-header" class="lgx-header">
<div class="lgx-header-inner">
<div class="container">
<div class="row">
<div class="col-xs-12">
<nav id="menu-offscroll" class="navbar navbar-default lgx-navbar">
<div class="container">
<nav class="navbar navbar-default lgx-navbar">
<div class="lgxcontainer">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".navbar-collapse">
<span class="sr-only"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="lgx-logo">
<a href="index.html" class="lgx-scroll">
<img src="http://retrip.eu/assets/img/logo.png" alt="Retrip"/>
</a>
</div>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav lgx-nav">
<li><a class="lgx-scroll" href="#lgx-schedule">Program</a></li>
<li><a class="lgx-scroll" href="#lgx-travelinfo">Doprava</a></li>
<!--
<li><a class="lgx-scroll" href="#lgx-accominfo">Ubytování</a></li>
-->
<li><a class="lgx-scroll" href="#lgx-sponsors">Partneři</a></li>
<li><a class="lgx-scroll" href="#lgx-contact">Kontakt</a></li>
<li><a class="lgx-scroll lgx-btn" href="#lgx-register"><span>Akreditace</span></a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</nav>
</div>
<!-- /.container -->
</nav>
</div>
</div>
<!--//.ROW-->
</div>
<!-- //.CONTAINER -->
</div>
<!-- //.INNER-->
</div>
</header>
<!--HEADER END-->
<!--BANNER-->
<section>
<div class="lgx-banner lgx-banner-typed">
<div class="lgx-banner-style">
<div class="lgx-inner">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="banner-info">
<div class="lgx-countdown-area">
<!-- Date Format :"Y/m/d" || For Example: 1017/10/5 -->
<div id="lgx-countdown" data-date="2021/06/19"></div>
</div>
<h2 class="title"><span id="lgx-typed-string">RETRIP</span></h2>
<h3 class="date">Minifestival retroherní popkultury | Lipnice nad Sázavou<br /><span>autoři | herna | projekce | výstava | diskuze | dílny | párty</span></h3>
</div>
</div>
</div>
<!--//.ROW-->
</div>
<!-- //.CONTAINER -->
</div>
<!-- //.INNER -->
</div>
</div>
</section>
<!--BANNER END-->
<!--PHOTO GALLERY-->
<section>
<div id="lgx-photo-gallery" class="lgx-photo-gallery">
<div id="lgx-memorisinner" class="lgx-memorisinner">
<div class="container-fluid text-center">
<div class="row">
<div class="lgx-single">
<figure>
<img src="assets/foto/lipnice1.jpg" alt="Lipnice nad Sázavou" title="Lipnice nad Sázavou" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Lipnice nad Sázavou" href="assets/foto/lipnice1.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img src="assets/foto/lipnice2.jpg" alt="Lipnice nad Sázavou" title="Lipnice nad Sázavou" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Lipnice nad Sázavou" href="assets/foto/lipnice2.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img src="assets/foto/lipnice3.jpg" alt="Lipnice nad Sázavou" title="Lipnice nad Sázavou" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Lipnice nad Sázavou" href="assets/foto/lipnice3.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img src="assets/foto/lipnice4.jpg" alt="Lipnice nad Sázavou" title="Lipnice nad Sázavou" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Lipnice nad Sázavou" href="assets/foto/lipnice4.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img title="Diskuze" src="assets/foto/diskuze.jpg" alt="Diskuze"/>
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Diskuze" href="assets/foto/diskuze.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img src="assets/foto/filmy1.jpg" alt="Videopásmo" title="Videopásmo" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Videopásmo" href="assets/foto/filmy1.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img src="assets/foto/quest.jpg" alt="Videopásmo" title="Videopásmo" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="The Quest" href="assets/foto/quest.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img src="assets/foto/atmosfera.jpg" alt="Atmosféra" title="Atmosféra" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Atmosféra" href="assets/foto/atmosfera.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img src="assets/foto/herna3.jpg" alt="Retroherna" title="Retroherna" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Retroherna" href="assets/foto/herna3.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img title="Retroherna" src="assets/foto/herna1.jpg" alt="Retroherna"/>
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Retroherna" href="assets/foto/herna1.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img src="assets/foto/herna2.jpg" alt="Retroherna" title="Retroherna" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Retroherna" href="assets/foto/herna2.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="lgx-single">
<figure>
<img src="assets/foto/herna4.jpg" alt="Retroherna" title="Retroherna" />
<figcaption class="lgx-figcaption">
<div class="lgx-hover-link">
<div class="lgx-vertical">
<a title="Retroherna" href="assets/foto/herna4.jpg">
<i class="fa fa-search fa-2x"></i>
</a>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
</div>
</section>
<!--PHOTO GALLERY END-->
<!--
<section>
<div class="lgx-blog lgx-blog-single">
<div class="lgx-inner">
<div class="container">
<div class="blog-area">
<div class="row">
<div class="col-xs-12">
<article class="lgx-card-single">
<header>
<div class="author">
<a href="#"><img src="assets/foto/lubor.jpg" alt="author"/></a>
<div class="author-info">
<h3 class="name">Lubor Kopecký</h3>
<h4 class="subtitle">pořadatel festivalu</h4>
<h4 class="comtitle">skupina TEHDY</h4>
</div>
</div>
<div class="text-area">
<h1 class="title">Ohlédnutí za prvním Retripem</h1>
<h3 class="subtitle">Tvůrci a fanoušci her pro pamětníky se v sobotu 16. června sešli v Lipnici nad Sázavou, aby společně zahájili první ročník festivalu Retrip.</h3>
<div class="hits-area">
<span class="date"><a href="#">17. června 2018</a></span>
</div>
</div>
</header>
<section>
<p>
Návštěvníci festivalu přijeli znovu prožít hry z 90. let na dobových počítačích, konzolích i arkádových automatech, navštívit diskuze a projekce filmových dokumentů o historii her a společně s autory zavzpomínat na legendární české hry Tajemství Oslího ostrova, 7 dní a 7 nocí, Brány Skeldalu, Colony 28, nebo DreamLand. Tvůrci adventury Polda z roku 1998 představili na festivalu novou verzi hry pro Android a iOS a fanoušci hry Bulánci se utkali v turnaji za účasti autorů hry.
</p>
<blockquote>
Na rozdíl od filmu nebo hudby nemají fanoušci starých her možnost snadno spustit oblíbená díla svého mládí bez původních zařízení a systémů. Pomalu se tak vytrácí toto kulturní a technické dědictví, které provázelo dětství a dospívání dnešních rodičů. Připravili jsme tedy výlet v čase, abychom předvedli počátky herní zábavy také svým dětem.
</blockquote>
</section>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!--SPEAKERS-->
<section>
<div id="lgx-speakers" class="lgx-speakers">
<div class="lgx-inner">
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<div class="lgx-heading-area">
<h2 class="lgx-heading">
<span class="back-heading"><i class="fa fa-info-circle" aria-hidden="true"></i></span>
<span class="heading">RETRIP 2019</span>
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="lgx-single-speaker lgx-single-speaker-sm">
<figure>
<img src="assets/img/herna.png" alt="RetroHerna"/>
</figure>
<div class="speaker-info">
<h3 class="title">RetroHerna.org</h3>
<h4 class="subtitle">Unikátní interaktivní expozice historických osobních počítačů, konzolí a slavných her.</h4>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="lgx-single-speaker lgx-single-speaker-sm">
<figure>
<img src="assets/img/tomassmutny.jpg" alt="Tomáš Smutný"/>
</figure>
<div class="speaker-info">
<h3 class="title">Ing. Tomáš Smutný</h3>
<h4 class="subtitle">Retrospektiva legendárního konstruktéra mikropočítačů a arkádových automatů.</h4>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="lgx-single-speaker lgx-single-speaker-sm">
<figure>
<img src="assets/img/bulanci.jpg" alt="Bulánci"/>
</figure>
<div class="speaker-info">
<h3 class="title">Bulánci</h3>
<h4 class="subtitle">Vzpomínky autorů hry s ukázkami dosud nezveřejněných vzpomínek a materiálů.</h4>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="lgx-single-speaker lgx-single-speaker-sm">
<figure>
<img src="assets/img/tetris.jpg" alt="Projekce"/>
</figure>
<div class="speaker-info">
<h3 class="title">Projekce</h3>
<h4 class="subtitle">Unikátní filmové dokumenty o počátcích české i světové herní scény.</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--SPEAKERS END-->
<!--PHOTO GALLERY-->
<!--
<section>
<div class="container-fluid text-center">
<div class="row">
<div class="lgx-single" align="center">
<figure>
<img src="assets/img/mapka.jpg" alt="Mapka" title="Mapka" />
</figure>
</div>
</div>
</div>
</section>
-->
<!--PHOTO GALLERY END-->
<!--SPONSORED-->
<section>
<div id="lgx-sponsors" class="lgx-sponsors">
<div class="lgx-inner">
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<div class="lgx-heading-area">
<h2 class="lgx-heading">
<span class="back-heading"><i class="fa fa-life-ring" aria-hidden="true"></i></span>
<span class="heading">Partneři</span>
</h2>
<p class="text">
Děkujeme společnosti Aktiv Communication (<a href="https://key4you.cz">Key4You.cz</a>) za podporu a pomoc umožňující konání této akce!
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="sponsors-area">
<div class="single">
<a class="" href="https://key4you.cz"><img src="http://retrip.eu/assets/img/key4you.png" alt="Key4You.cz"/></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="sponsors-area">
<div class="mini">
<a class="" href="http://herniarchiv.cz"><img src="http://retrip.eu/assets/img/archiv.png" alt="HerníArchiv.cz"/></a>
</div>
<div class="small">
<a class="" href="http://retroherna.org"><img src="http://retrip.eu/assets/img/retroherna.png" alt="Retroherna.org"/></a>
</div>
<div class="mini">
<a class="" href="http://tehdy.com"><img src="http://retrip.eu/assets/img/tehdy.png" alt="Tehdy.com"/></a>
</div>
</div>
</div>
</div>
<!--
<div class="sponsors-btn-area">
<a class="lgx-btn lgx-btn-big" href="partner.html"><span>Podpořit Retrip</span></a>
</div>
-->
</div>
</div>
</div>
</section>
<!--SPONSORED END-->
<!--TRAVEL INFO-->
<!--
<section>
<div id="lgx-travelinfo" class="lgx-travelinfo">
<div class="lgx-inner">
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<div class="lgx-heading-area">
<h2 class="lgx-heading">
<span class="back-heading"><i class="fa fa-info-circle" aria-hidden="true"></i></span>
<span class="heading">Doprava</span>
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-6">
<h3>Praha -> Lipnice</h3>
<table class="table lgx-table">
<thead>
<tr>
<th><b>Pátek</b></th>
<th>Praha hl.n. -> Havl. Brod</th>
<th>Havl. Brod -> Lipnice n.S.</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td>Vlak 17:05 - 19:00</td>
<td>Bus 19:20 - 19:51</td>
</tr>
</tbody>
<thead>
<tr>
<th><b>Sobota</b></th>
<th>Praha hl.n. -> Světlá n.S.</th>
<th>Světlá n.S. -> Lipnice n.S.</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td>Vlak 8:05 - 9:39</td>
<td>Bus 9:50 - 10:10</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12 col-md-6">
<h3>Brno -> Lipnice</h3>
<table class="table lgx-table">
<thead>
<tr>
<th><b>Pátek</b></th>
<th>Brno hl.n. -> Havl. Brod</th>
<th>Havl. Brod -> Lipnice n.S.</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td>Vlak 17:20 - 18:58</td>
<td>Bus 19:20 - 19:51</td>
</tr>
</tbody>
<thead>
<tr>
<th><b>Sobota</b></th>
<th>Brno hl.n. -> Světlá n.S.</th>
<th>Světlá n.S. -> Lipnice n.S.</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td>Vlak 6:20 - 8:14</td>
<td>Bus 9:50 - 10:10</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12 col-md-6">
<h3>Lipnice -> Praha</h3>
<table class="table lgx-table">
<thead>
<tr>
<th><b>Sobota</b></th>
<th>Lipnice n.S. -> Havl. Brod</th>
<th>Havl. Brod -> Praha hl.n.</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td>Bus 17:10 - 17:40</td>
<td>Vlak 18:00 - 19:49</td>
</tr>
</tbody>
<thead>
<tr>
<th><b>Neděle</b></th>
<th>Lipnice n.S. -> Havl. Brod</th>
<th>Havl. Brod -> Praha hl.n.</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td>Bus 12:18 - 12:49</td>
<td>Vlak 14:00 - 15:49</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12 col-md-6">
<h3>Lipnice -> Brno</h3>
<table class="table lgx-table">
<thead>
<tr>
<th><b>Sobota</b></th>
<th>Lipnice n.S. -> Havl. Brod</th>
<th>Havl. Brod -> Brno hl.n.</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td>Bus 17:10 - 17:40</td>
<td>Vlak 18:02 - 19:40</td>
</tr>
</tbody>
<thead>
<tr>
<th><b>Neděle</b></th>
<th>Lipnice n.S. -> Havl. Brod</th>
<th>Havl. Brod -> Praha hl.n.</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td>Bus 12:18 - 12:49</td>
<td>Vlak 14:02 - 15:40</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!--TRAVEL INFO END-->
<!--ACCOMM INFO-->
<!--
<section>
<div id="lgx-accominfo" class="lgx-travelinfo">
<div class="lgx-inner">
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<div class="lgx-heading-area">
<h2 class="lgx-heading">
<span class="back-heading"><i class="fa fa-info-circle" aria-hidden="true"></i></span>
<span class="heading">Ubytování</span>
</h2>
</div>
</div>
<div class="col-sm-12 col-md-6">
<h3>Penzion Brixen</h3> <h4>pátek 15.6. - neděle 17.6.</h4>
<table class="table lgx-table">
<thead>
<tr>
<th>Pokoj pro dva</th>
<th>Pokoj pro tři</th>
</tr>
</thead>
<tbody>
<tr>
<td>1400 Kč/noc<br><i>(celkem 2800 Kč)</i></td>
<td>2100 Kč/noc<br><i>(celkem 4200 Kč)</i></td>
</tr>
</tbody>
<tbody>
<tr>
<td>Rezervace pokojů:</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-12 col-md-6">
<h3>Kamenosochařské středisko</h3> <h4>pátek 15.6. - neděle 17.6.</h4>
<table class="table lgx-table">
<thead>
<tr>
<th>Pokoj pro čtyři</th>
<th>Pokoj pro šest</th>
</tr>
</thead>
<tbody>
<tr>
<td>900 Kč/noc<br><i>(celkem 1800 Kč)</i></td>
<td>1350 Kč/noc<br><i>(celkem 2700 Kč)</i></td>
</tr>
</tbody>
<tbody>
<tr>
<td>Rezervace pokojů:</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!--ACCOMM INFO END-->
<!--REGISTER-->
<!--
<section>
<div id="lgx-register" class="lgx-register lgx-register-gradient">
<div class="lgx-inner">
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<div class="lgx-heading-area lgx-heading-brand">
<h2 class="lgx-heading ">
<span class="back-heading"><i class="fa fa-ticket" aria-hidden="true"></i></span>
<span class="heading">Akreditace 2020</span>
</h2>
<p class="text">
Bezplatný vstup všem do 12 let a nad 60 let!
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="single">
<div class="single-top">
<h4 class="price">Herna<span></span></h4>
<h3 class="title">100 Kč</h3>
</div>
<div class="single-bottom">
<ul class="list-unstyled list">
<li><i class="fa fa-check" aria-hidden="true"></i> Vstup do RetroHerny</li>
</ul>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="single">
<div class="single-top">
<h4 class="price">Denní <span>program</span></h4>
<h3 class="title">290 Kč</h3>
<p>V předprodeji <b>190 Kč</b></p>
</div>
<div class="single-bottom">
<ul class="list-unstyled list">
<li><i class="fa fa-check" aria-hidden="true"></i> Herna</li>
<li><i class="fa fa-check" aria-hidden="true"></i> Program 10 - 18 h</li>
</ul>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="single active">
<div class="single-top">
<h4 class="price">Plná <span>akreditace</span></h4>
<h3 class="title">490 Kč</h3>
<p>V předprodeji <b>350 Kč</b></p>
</div>
<div class="single-bottom">
<ul class="list-unstyled list">
<li><i class="fa fa-check" aria-hidden="true"></i> Herna</li>
<li><i class="fa fa-check" aria-hidden="true"></i> Denní program</li>
<li><i class="fa fa-check" aria-hidden="true"></i> Noční párty</li>
</ul>
</div>
</div>
</div>
</div>
<br /><br />
<!--
<div class="row">
<script src="https://cdn.weemss.com/compiled/js/integration-embed.js?v1.4"></script><iframe src="https://event.gg/10076/form" id="weemss_integration_10076" frameBorder="0" width="100%" height="450" scrolling="no"></iframe>
</div>
-->
</div>
</div>
</div>
</section>
-->
<!--REGISTER END-->
<!--CONTACT-->
<section>
<div id="lgx-contact" class="lgx-contact">
<div class="lgx-inner">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-6">
<div class="contact-info">
<div class="lgx-box">
<!--<span class="lgx-icon"><i class="fa fa-map-marker"></i></span>-->
<div class="address">
<h3 class="title">Pořadatel: skupina Tehdy</h3>
<br/>
<p>Lubor Kopecký<br/>Smrčensko 1<br/>582 91 Dolní Město</p>
</div>
</div>
<div class="lgx-box">
<!--<span class="lgx-icon"><i class="fa fa-headphones"></i></span>-->
<div class="address">
<p>E-mail: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Web: <a href="http://www.tehdy.cz">www.tehdy.cz</a></p>
<p><a href="https://www.facebook.com/events/200060033890810/">facebook.com/TEHDY.cz</a> </p>
</div>
</div>
</div>
</div> <!--//.COL-->
<div class="col-sm-12 col-md-6">
<div class="contact-info">
<div class="lgx-box">
<!--<span class="lgx-icon"><i class="fa fa-headphones"></i></span>-->
<div class="address">
<h3 class="title">RETRIP</h3>
</div>
</div>
<div class="lgx-box">
<!--<span class="lgx-icon"><i class="fa fa-envelope"></i></span>-->
<div class="address">
<p><strong>Ubytování:</strong><br/><a href="mailto:[email protected]">[email protected]</a></p>
<br/>
<p><strong>Média:</strong><br/> <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</div>
</div>
</div>
</div><!-- //.CONTAINER -->
</div><!-- //.INNER -->
</div>
</section>
<!--CONTACT END-->
<!--FOOTER-->
<footer>
<div id="lgx-footer" class="lgx-footer">
<div class="lgx-footer-bg">
<div class="lgx-inner">
<div class="container">
<!--
<div class="lgx-subscriber-area">
<div class="lgx-testi-inner">
<div class="container">
<div class="row">
<div class="col-sm-offset-2 col-sm-8 col-xs-12">
<h3 class="title">Zůstaňme v kontaktu</h3>
<div class="lgx-subscriber">
<form class="subscribe-form lgx-subscribe-form" >
<div class="form-group">
<input type="email" id="subscribe" class="form-control lgx-input-form form-control" />
</div>
<div class="form-group">
<button type="submit" name="lgx-submit" id="lgx-submit" class="lgx-submit the-submit-btn"><span>Odeslat</span></button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
-->
<div class="lgx-logo">
<a href="index.html" class="lgx-scroll">
<img src="http://retrip.eu/assets/img/logo.png" alt="Retrip"/>
</a>
</div>
<div class="footer-social">
<ul class="list-inline">
<li><a class="sp-fb" href="https://www.facebook.com/events/200060033890810/"><i class="fa fa-facebook"></i></a></li>
<li><a class="sp-tw" href="https://twitter.com/LuborKopecky"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="lgx-copyright"><a href="http://www.retrip.eu"><span class="themename">RETRIP</span></a> <span class="text">|</span> <a href="http://www.tehdy.cz/">TEHDY</a></p>
</div>
<!-- //.CONTAINER -->
</div>
</div>
<!-- //.INNER-->
</div>
</footer>
<!--FOOTER END-->
</div>
<!--//.LGX SITE CONTAINER-->
<!-- *** ADD YOUR SITE SCRIPT HERE *** -->
<!-- JQUERY -->
<script src="assets/js/vendor/jquery-1.12.4.min.js"></script>
<!-- BOOTSTRAP JS -->
<script src="assets/libs/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/libs/jquery.smooth-scroll.js"></script>
<!-- SKILLS SCRIPT -->
<script src="assets/libs/jquery.validate.js"></script>
<!-- if load google maps then load this api, change api key as it may expire for limit cross as this is provided with any theme -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=XXXXXXXXXXXXXXXXXXXX"></script>
<!-- CUSTOM GOOGLE MAP -->
<script type="text/javascript" src="assets/libs/gmap/jquery.googlemap.js"></script>
<!-- adding magnific popup js library -->
<script type="text/javascript" src="assets/libs/maginificpopup/jquery.magnific-popup.min.js"></script>
<!-- Owl Carousel -->
<script src="assets/libs/owlcarousel/owl.carousel.min.js"></script>
<!-- COUNTDOWN -->
<script src="assets/libs/countdown.js"></script>
<script src="assets/libs/timer/TimeCircles.js"></script>
<!-- SMOTH SCROLL -->
<script src="assets/libs/jquery.smooth-scroll.min.js"></script>
<script src="assets/libs/jquery.easing.min.js"></script>
<!-- type js -->
<script src="assets/libs/typed/typed.min.js"></script>
<!-- CUSTOM SCRIPT -->
<script src="assets/js/custom.script.js"></script>
</body>
</html>