-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
907 lines (813 loc) · 41.6 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<!-- meta charec set -->
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- Page Title -->
<title>EduSim - Team 13</title>
<!-- Icon -->
<link href="img/edusim-nav-logo.png" rel="icon"/>
<!-- Google Font -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- CSS
================================================== -->
<!-- Fontawesome Icon font -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Twitter Bootstrap css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- jquery.fancybox -->
<link rel="stylesheet" href="css/jquery.fancybox.css">
<!-- animate -->
<link rel="stylesheet" href="css/animate.css">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/main.css">
<!-- media-queries -->
<link rel="stylesheet" href="css/media-queries.css">
<!-- Modernizer Script for old Browsers -->
<script src="js/modernizr-2.6.2.min.js"></script>
</head>
<body id="body">
<!-- preloader -->
<div id="preloader">
<img src="img/preloader.gif" alt="Preloader">
</div>
<!-- end preloader -->
<!--
Fixed Navigation
==================================== -->
<header id="navigation" class="navbar-fixed-top navbar">
<div class="container">
<div class="navbar-header">
<!-- responsive nav button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<i class="fa fa-bars fa-2x"></i>
</button>
<!-- /responsive nav button -->
<!-- logo -->
<a class="navbar-brand" href="#body">
<h1 id="logo">
<img src="img/logo.png" height="46" alt="Brandi">
</h1>
</a>
<!-- /logo -->
</div>
<!-- main nav -->
<nav class="collapse navbar-collapse navbar-right" role="navigation">
<ul id="nav" class="nav navbar-nav">
<li class="current"><a href="#body">Domov</a></li>
<!-- <li><a href="#works">Praca</a></li> -->
<li><a href="#about-project">O Projekte</a></li>
<li><a href="#documentation">Dokumenty</a></li>
<li><a href="#team">Tím</a></li>
<li><a href="#footer">Kontakt</a></li>
</ul>
</nav>
<!-- /main nav -->
</div>
</header>
<!--
End Fixed Navigation
==================================== -->
<!--
Home Slider
==================================== -->
<section id="slider">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators bullet -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
</ol>
<!-- End Indicators bullet -->
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<!-- single slide -->
<div class="item active" style="background-image: url(img/banner.jpg);">
<div class="carousel-caption">
<h2 data-wow-duration="700ms" data-wow-delay="500ms" class="wow bounceInDown animated">EduSim -<span> Simulátor pre výuku</span></h2>
<h3 data-wow-duration="1000ms" class="wow slideInLeft animated"><span class="color">tím 13 v spolupráci s firmou Atos</span></h3>
<p data-wow-duration="1000ms" class="wow slideInRight animated">Študentský tímový projekt na FIIT STU</p>
<ul class="social-links text-center">
<li><a href=""><i class="fa fa-twitter fa-lg"></i></a></li>
<li><a href=""><i class="fa fa-facebook fa-lg"></i></a></li>
<li><a href=""><i class="fa fa-google-plus fa-lg"></i></a></li>
<li><a href=""><i class="fa fa-dribbble fa-lg"></i></a></li>
</ul>
</div>
</div>
<!-- end single slide -->
</div>
<!-- End Wrapper for slides -->
</div>
</section>
<!--
End Home SliderEnd
==================================== -->
<!--
About Project
==================================== -->
<section id="about-project">
<div class="container">
<div class="row">
<div class="sec-title text-center wow fadeInRight animated">
<h2>Čo je EduSim?</h2>
<div class="devider"><i class="fa fa-university fa-lg"></i></div>
</div>
<div class="sec-sub-title text-center wow fadeInRight animated">
<p>EduSim je tímový projekt realizovaný tímom MamBit na FIIT STU v akademickom roku 2016/2017. Projekt je realizovaný v spolupráci s firmou Atos.</p>
<p>Cieľom projektu je vytvoriť autoringový nástroj na tvorbu vzdelávacích interaktívnych programov a simulácií, prevádzkovaných v prostredí webu a systémoch na riadenie výučby. Vytvorený nástroj umožní jednoduchú tvorbu simulácií a programov, ktoré sa budú skladať z vopred pripravených komponentov. Pedagóg alebo iná osoba tak dokáže pripraviť zaujímavé vzdelávacie materiály a cvičenia, bez nutnosti čokoľvek programovať.</p>
</div>
</div>
</div>
</section>
<!--
End About Project
==================================== -->
<!--
Export Demo
==================================== -->
<section id="export-demo" class="clearfix">
<div class="container wow fadeInRight animated">
<div class="row">
<div class="sec-title text-center">
<h2>Demo Exportu</h2>
<div class="devider"><i class="fa fa-university fa-lg"></i></div>
</div>
<div class="sec-sub-title text-center">
<p>Demo exportov:</p>
<div class="marketing-list text-center wow fadeInRight animated">
<ul>
<li>Demo I - <a href="demo/demo-1/export.html" target="_blank"><i class="fa fa-external-link fa-button" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--
End Export Demo
==================================== -->
<!--
Our Works
==================================== -->
<section id="works" class="works clearfix">
<div class="container wow fadeInRight animated">
<div class="row">
<div class="sec-title text-center">
<h2>Obrázky Softvéru</h2>
<div class="devider"><i class="fa fa-university fa-lg"></i></div>
</div>
<div class="sec-sub-title text-center">
<p>EduSim pozostáva z dvoch hlavných častí: desktopovej aplikácie a webových exportov simulácií. Tiež máme pripravený aj používateľský manuál.</p>
</div>
<div class="work-filter wow fadeInRight animated" data-wow-duration="500ms">
<ul class="text-center">
<li><a href="javascript:;" data-filter="all" class="active filter">Všetky</a></li>
<li><a href="javascript:;" data-filter=".desktop" class="filter">Desktopová Aplikácia</a></li>
<li><a href="javascript:;" data-filter=".export" class="filter">Exporty</a></li>
<li><a href="javascript:;" data-filter=".manual" class="filter">Manuál</a></li>
</ul>
</div>
</div>
</div>
<div class="project-wrapper wow fadeInRight animated">
<figure class="mix work-item desktop">
<div class="screenshot-box">
<img src="img/screenshots/desktop-1.png" alt="">
</div>
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Ukážka bežiaceho elektrického obvodu vyskladaného v desktopovej verzii nástroja EduSim." href="img/screenshots/desktop-1.png"><i class="fa fa-eye fa-lg"></i></a>
<h4>Ukážka schéme v desktopovej aplikácii</h4>
<p>Screenshot desktopovej aplikácie</p>
</figcaption>
</figure>
<figure class="mix work-item export">
<div class="screenshot-box">
<img src="img/screenshots/export-1.png" alt="">
</div>
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Ukážka exportovanej schéme z nástroja EduSim do HTML5 dokumentu." href="img/screenshots/export-1.png"><i class="fa fa-eye fa-lg"></i></a>
<h4>Ukážka schéme exportovanej do HTML5</h4>
<p>Screenshot exportu</p>
</figcaption>
</figure>
<figure class="mix work-item manual">
<div class="screenshot-box">
<img src="img/screenshots/manual-1.png" alt="">
</div>
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Ukážka záznamu z manuálu pre použitie ovládacích prvkov pracovnej plochy." href="img/screenshots/manual-1.png"><i class="fa fa-eye fa-lg"></i></a>
<h4>Ukážka záznamu v manuále</h4>
<p>Screenshot manuálu</p>
</figcaption>
</figure>
</div>
</section>
<!--
End Our Works
==================================== -->
<!--
Our Documentation
==================================== -->
<section id="documentation">
<div class="container">
<div class="row">
<div class="sec-title text-center wow fadeInRight animated">
<h2>Dokumenty</h2>
<div class="devider"><i class="fa fa-university fa-lg"></i></div>
</div>
<div class="sec-sub-title text-center wow fadeInRight animated">
<p>V tejto sekcii sú všetky zápisnice zo stretnutí, dokumentácia a iné dokumenty na stiahnutie.</p>
</div>
<div class="table-title wow fadeInRight animated">
<h3>Zápisy zo stretnutí:</h3>
</div>
<div class="work-filter wow fadeInRight animated" data-wow-duration="500ms">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Meno dokumentu</th>
<th>Dátum stretnutia</th>
<th>Stiahnúť</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td>Stretnutie 1</td>
<td>26.09.2016</td>
<td><a href="documents/stretnutie-1.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></i></a></td>
</tr>
<tr>
<th>2</th>
<td>Stretnutie 2</td>
<td>03.10.2016</td>
<td><a href="documents/stretnutie-2.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>3</th>
<td>Stretnutie 3</td>
<td>09.10.2016</td>
<td><a href="documents/stretnutie-3.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>4</th>
<td>Stretnutie 4</td>
<td>17.10.2016</td>
<td><a href="documents/stretnutie-4.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>5</th>
<td>Stretnutie 5</td>
<td>24.10.2016</td>
<td><a href="documents/stretnutie-5.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>6</th>
<td>Stretnutie 6</td>
<td>07.11.2016</td>
<td><a href="documents/stretnutie-6.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>7</th>
<td>Stretnutie 7</td>
<td>14.11.2016</td>
<td><a href="documents/stretnutie-7.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>8</th>
<td>Stretnutie 8</td>
<td>21.11.2016</td>
<td><a href="documents/stretnutie-8.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>9</th>
<td>Stretnutie 9</td>
<td>28.11.2016</td>
<td><a href="documents/stretnutie-9.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>10</th>
<td>Stretnutie 10</td>
<td>05.12.2016</td>
<td><a href="documents/stretnutie-10.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>11</th>
<td>Stretnutie 11</td>
<td>13.02.2017</td>
<td><a href="documents/stretnutie-11.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>12</th>
<td>Stretnutie 12</td>
<td>20.02.2017</td>
<td><a href="documents/stretnutie-12.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>13</th>
<td>Stretnutie 13</td>
<td>27.02.2017</td>
<td><a href="documents/stretnutie-13.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>14</th>
<td>Stretnutie 14</td>
<td>04.03.2017</td>
<td><a href="documents/stretnutie-14.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>15</th>
<td>Stretnutie 15</td>
<td>13.03.2017</td>
<td><a href="documents/stretnutie-15.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>16</th>
<td>Stretnutie 16</td>
<td>20.03.2017</td>
<td><a href="documents/stretnutie-16.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>17</th>
<td>Stretnutie 17</td>
<td>27.03.2017</td>
<td><a href="documents/stretnutie-17.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>18</th>
<td>Stretnutie 18</td>
<td>03.04.2017</td>
<td><a href="documents/stretnutie-18.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>19</th>
<td>Stretnutie 19</td>
<td>10.04.2017</td>
<td><a href="documents/stretnutie-19.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>20</th>
<td>Stretnutie 20</td>
<td>20.04.2017</td>
<td><a href="documents/stretnutie-20.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>21</th>
<td>Stretnutie 21</td>
<td>24.04.2017</td>
<td><a href="documents/stretnutie-21.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>22</th>
<td>Stretnutie 22</td>
<td>09.05.2017</td>
<td><a href="documents/stretnutie-22.pdf" target="_blank"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
</tbody>
</table>
</div>
<div class="table-title">
<h3>Dokumentácia:</h3>
</div>
<div class="work-filter wow fadeInRight animated" data-wow-duration="500ms">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Meno dokumentu</th>
<th>Nahrané dňa</th>
<th>Stiahnúť</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td>Dokumentácia - Zimný semester</td>
<td>05.02.2017</td>
<td><a href="documents/zs-dokumentacia.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></td>
</tr>
<tr>
<th>2</th>
<td>Dokumentácia k produktu - letný semester</td>
<td>15.05.2017</td>
<td><a href="documents/tp2-tim13-produkt2016-17.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></td>
</tr>
<tr>
<th>3</th>
<td>Dokumentácia k riadeniu - letný semester</td>
<td>15.05.2017</td>
<td><a href="documents/tp2-tim13-riadenie2016-2017.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></td>
</tr>
</tbody>
</table>
</div>
<div class="table-title">
<h3>Retrospektíva:</h3>
</div>
<div class="work-filter wow fadeInRight animated" data-wow-duration="500ms">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Meno dokumentu</th>
<th>Nahrané dňa</th>
<th>Stiahnúť</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td>Cadillac Retrospektíva</td>
<td>22.11.2016</td>
<td><a href="documents/retrospektiva-cadillac.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>2</th>
<td>Dodge Retrospektíva</td>
<td>05.12.2016</td>
<td><a href="documents/retrospektiva-dodge.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>3</th>
<td>Ferrarri Retrospektíva</td>
<td>27.02.2017</td>
<td><a href="documents/retrospektiva-ferrarri.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>4</th>
<td>GAZ Retrospektíva</td>
<td>13.03.2017</td>
<td><a href="documents/retrospektiva-gaz.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></td>
</tr>
<tr>
<th>4</th>
<td>Honda Retrospektíva</td>
<td>27.03.2017</td>
<td><a href="documents/retrospektiva-honda.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>5</th>
<td>Infiniti Retrospektíva</td>
<td>10.04.2017</td>
<td><a href="documents/retrospektiva-infiniti.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
</tbody>
</table>
</div>
<div class="table-title">
<h3>Exporty stavu projektu z Jiri:</h3>
</div>
<div class="work-filter wow fadeInRight animated" data-wow-duration="500ms">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Meno dokumentu</th>
<th>Dátum exportu</th>
<th>Stiahnúť</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td>Audi - polovica šprintu</td>
<td>17.10.2016</td>
<td><a href="documents/audi-polovica.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>2</th>
<td>Audi - koniec šprintu</td>
<td>24.10.2016</td>
<td><a href="documents/audi-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>3</th>
<td>Bentley - polovica šprintu</td>
<td>31.10.2016</td>
<td><a href="documents/bentley-polovica.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>4</th>
<td>Bentley - koniec šprintu</td>
<td>07.11.2016</td>
<td><a href="documents/bentley-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>5</th>
<td>Cadillac - polovica šprintu</td>
<td>14.11.2016</td>
<td><a href="documents/cadillac-polovica.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>6</th>
<td>Cadillac - koniec šprintu</td>
<td>21.11.2016</td>
<td><a href="documents/cadillac-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>7</th>
<td>Dodge - polovica šprintu</td>
<td>28.11.2016</td>
<td><a href="documents/dodge-polovica.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>8</th>
<td>Dodge - koniec šprintu</td>
<td>05.12.2016</td>
<td><a href="documents/dodge-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>9</th>
<td>Ferrarri - polovica šprintu</td>
<td>20.02.2017</td>
<td><a href="documents/ferrarri-polovica.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>10</th>
<td>Ferrarri - koniec šprintu</td>
<td>27.02.2017</td>
<td><a href="documents/ferrarri-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>11</th>
<td>GAZ - polovica šprintu</td>
<td>06.03.2017</td>
<td><a href="documents/gaz-polovica.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>12</th>
<td>GAZ - koniec šprintu</td>
<td>13.03.2017</td>
<td><a href="documents/gaz-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>13</th>
<td>Honda - polovica šprintu</td>
<td>20.03.2017</td>
<td><a href="documents/honda-polovica.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>14</th>
<td>Honda - koniec šprintu</td>
<td>27.03.2017</td>
<td><a href="documents/honda-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>15</th>
<td>Infiniti - polovica šprintu</td>
<td>03.04.2017</td>
<td><a href="documents/infiniti-polovica.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>16</th>
<td>Infiniti - koniec šprintu</td>
<td>03.04.2017</td>
<td><a href="documents/infiniti-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>17</th>
<td>Jawa - polovica šprintu</td>
<td>20.04.2017</td>
<td><a href="documents/jawa-polovica.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>18</th>
<td>Jawa - koniec šprintu</td>
<td>03.04.2017</td>
<td><a href="documents/jawa-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>19</th>
<td>Karosa - koniec šprintu</td>
<td>09.05.2017</td>
<td><a href="documents/karosa-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
<tr>
<th>20</th>
<td>Lexus - koniec šprintu</td>
<td>15.05.2017</td>
<td><a href="documents/lexus-koniec.pdf"><i class="fa fa-download file-download-icon" aria-hidden="true"></a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!--
End Our Documentation
==================================== -->
<!--
Meet Our Team
==================================== -->
<section id="team" class="team">
<div class="container">
<div class="row">
<div class="sec-title text-center wow fadeInUp animated" data-wow-duration="700ms">
<h2>Náš tím</h2>
<div class="devider"><i class="fa fa-university fa-lg"></i></div>
</div>
<div class="sec-sub-title text-center wow fadeInRight animated">
<img src="img/team/banner-mambit.png" width="100%" alt="Mambit Banner!"></img>
</div>
<div class="sec-sub-title text-center wow fadeInRight animated">
<img src="img/team/us.png" width="100%" alt="Our picture!"></img>
</div>
<div class="sec-sub-title text-center wow fadeInRight animated" data-wow-duration="500ms">
<p>Predstavujeme Vám tím MamBit! Presnejšie informácie o tom, ktorý člen sa venoval akej problematike nájdete v exportoch z Jiri <a class="text-link" href="#documentation">vyššie</a>.</p>
</div>
<!-- single member -->
<figure class="team-member col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms">
<div class="member-thumb">
<img src="img/team/supervisor.png" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<h5>Ing. Marek Lóderer</h5>
<p>Vedúci predmetu tímový projekt pre náš tím.</p>
</figcaption>
</div>
<h4>Ing. Marek Lóderer</h4>
<span>Vedúci projektu</span>
</figure>
<!-- end single member -->
<!-- single member -->
<figure class="team-member col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="300ms">
<div class="member-thumb">
<img src="img/team/member-2.png" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<h5>Bc. Adam Blaško</h5>
<p>Zodpovedný za administráciu nástrojov na manažment projektu (Atlassian stack - Jira, Confluence, BitBucket, Crucible a HipChat). Vývoj v oblasti grafického používateľského rozhrania, používateľskej interakcie a simulačnej logike.</p>
</figcaption>
</div>
<h4>Bc. Adam Blaško</h4>
<span>Scrum Master, Developer</span>
</figure>
<!-- end single member -->
<!-- single member -->
<figure class="team-member col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="600ms">
<div class="member-thumb">
<img src="img/team/member-3.png" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<h5>Bc. Martin Cvičela</h5>
<p>Zodpovedný za testovanie, bugtracking a bugfixing. Vývoj v oblasti používateľskej interakcie.</p>
</figcaption>
</div>
<h4>Bc. Martin Cvičela</h4>
<span>Manažér testovania, Developer</span>
</figure>
<!-- end single member -->
<!-- single member -->
<figure class="team-member col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="900ms">
<div class="member-thumb">
<img src="img/team/member-1.png" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<h5>Bc. Ivan Gulis</h5>
<p>Zodpovedný za vyhodnocovanie plnenia plánu a návrh úprav. Vývoj v oblasti grafického používateľského rozhrania.</p>
</figcaption>
</div>
<h4>Bc. Ivan Gulis</h4>
<span>Manažér plánovania, Developer</span>
</figure>
<!-- end single member -->
<!-- single member -->
<figure class="team-member col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms">
<div class="member-thumb">
<img src="img/team/member-4.png" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<h5>Bc. Tomáš Liščák</h5>
<p>Zodpovedný za zápisky zo stretnutí a dokumentáciu. Vývoj v oblasti simulačnej logike a algoritmizácie.</p>
</figcaption>
</div>
<h4>Bc. Tomáš Liščák</h4>
<span>Manažér dokumentácie, Developer</span>
</figure>
<!-- end single member -->
<!-- single member -->
<figure class="team-member col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms">
<div class="member-thumb">
<img src="img/team/member-1.png" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<h5>Bc. Branislav Makan</h5>
<p>Zodpovedný za manažovanie webovej stránky tímu a marketing produktu. Vývoj v oblasti používateľskej interakcie, grafického používateľského rozhrania a webových technológií.</p>
</figcaption>
</div>
<h4>Bc. Branislav Makan</h4>
<span>Marketing, Developer</span>
</figure>
<!-- end single member -->
<!-- single member -->
<figure class="team-member col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms">
<div class="member-thumb">
<img src="img/team/member-2.png" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<h5>Bc. Marek Matula</h5>
<p>Zodpovedný za záležitosti spojené s code review a komunikácie so zákazníkom. Vývoj v oblasti simulačnej logike.</p>
</figcaption>
</div>
<h4>Bc. Marek Matula</h4>
<span>Manažér Code-Review, Komunikácia so zákazníkom, Developer</span>
</figure>
<!-- end single member -->
</div>
</div>
</section>
<!--
End Meet Our Team
==================================== -->
<!--
About Project
==================================== -->
<section id="poster">
<div class="container">
<div class="row">
<div class="sec-title text-center wow fadeInRight animated">
<h2>Marketing</h2>
<div class="devider"><i class="fa fa-university fa-lg"></i></div>
</div>
<div class="table-title wow fadeInRight animated">
</div>
<div class="sec-sub-title text-center wow fadeInRight animated">
<p>Pozrite si ako sme náš produkt predstavili verejnosti.</p>
</div>
<div class="marketing-list text-center wow fadeInRight animated">
<ul>
<li>Článok na RobimeIT - <a href="https://robime.it/edusim-nastroj-na-tvorbu-vzdelavacich-simulacii/" target="_blank"><i class="fa fa-external-link" aria-hidden="true"></i></a></li>
</ul>
</div>
<div class="text-center img-center wow fadeInRight animated">
<img src="img/poster.png" width="100%" alt="Marketing Poster!"></img>
</div>
<div class="text-center img-center wow fadeInRight animated">
<img src="img/team/poster.png" width="100%" alt="Poster!"></img>
</div>
</div>
</div>
</section>
<!--
End About Project
==================================== -->
<footer id="footer" class="footer">
<div class="container">
<div class="row">
<div class="footer-single text-center wow fadeInUp animated">
<img src="img/logo.png" width="250" alt="">
<p>Tímový projekt na FIIT STU v akademickom roku 2016/2017.</p>
<p>
<a href="mailto:[email protected]"><i class="fa fa-envelope fa-3x"></i></a>
<a href="https://www.facebook.com/FIIT.STU/?fref=ts"><i class="fa fa-facebook-square fa-3x"></i></a>
<p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p class="copyright text-center">
Copyright © 2015 <a href="http://themefisher.com/">Themefisher</a>. All rights reserved. Designed & developed by <a href="http://themefisher.com/">Themefisher</a>
</p>
</div>
</div>
</div>
</footer>
<a href="javascript:void(0);" id="back-top"><i class="fa fa-angle-up fa-3x"></i></a>
<!-- Essential jQuery Plugins
================================================== -->
<!-- Main jQuery -->
<script src="js/jquery-1.11.1.min.js"></script>
<!-- Single Page Nav -->
<script src="js/jquery.singlePageNav.min.js"></script>
<!-- Twitter Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- jquery.fancybox.pack -->
<script src="js/jquery.fancybox.pack.js"></script>
<!-- jquery.mixitup.min -->
<script src="js/jquery.mixitup.min.js"></script>
<!-- jquery.parallax -->
<script src="js/jquery.parallax-1.1.3.js"></script>
<!-- jquery.countTo -->
<script src="js/jquery-countTo.js"></script>
<!-- jquery.appear -->
<script src="js/jquery.appear.js"></script>
<!-- jquery easing -->
<script src="js/jquery.easing.min.js"></script>
<!-- jquery easing -->
<script src="js/wow.min.js"></script>
<script>
var wow = new WOW ({
boxClass: 'wow', // animated element css class (default is wow)
animateClass: 'animated', // animation css class (default is animated)
offset: 120, // distance to the element when triggering the animation (default is 0)
mobile: false, // trigger animations on mobile devices (default is true)
live: true // act on asynchronously loaded content (default is true)
}
);
wow.init();
</script>
<!-- Custom Functions -->
<script src="js/custom.js"></script>
</body>
</html>