-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1500 lines (1430 loc) · 98.2 KB
/
index.html
File metadata and controls
executable file
·1500 lines (1430 loc) · 98.2 KB
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
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="${{ _lang_ }}$">
<head>
<script>
var language = navigator.language || navigator.browserLanguage;
if(language === 'es' && window.location.href.indexOf('/es/') === -1) {
if(window.location.href[window.location.href.length - 1] === '/') {
window.location.href= window.location.href + 'es/';
} else {
window.location.href= window.location.href + '/es/';
}
}
</script>
<link rel="icon" type="image/png" href="/favicon.png">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>${{ text.title }}$</title>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Raleway:400,600,500,700">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Cabin:400,400italic,500,600">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Great+Vibes">
<!-- build:css /css/main.css -->
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/flexslider.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/owl.carousel.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/owl.theme.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/jquery-ui.min.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/kagenda-styles.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/custom.css" media="screen">
<!-- endbuild-->
</head>
<body data-spy="scroll" class="lang-${{ _lang_ }}$">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-controls="navbar">
<span class="sr-only">${{ text.header.changeNavState }}$</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">${{ text.title }}$</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav scroll-to navbar-right">
<li><a href="#home">${{ text.header.home }}$</a></li>
<!-- <li><a href="#proposals">${{ text.header.cfp }}$</a></li> -->
<!-- <li><a href="#streaming">${{ text.header.streaming }}$</a></li> -->
<li><a href="#speakers">${{ text.header.speakers }}$</a></li>
<li><a href="#schedule">${{ text.header.schedule }}$</a></li>
<li><a href="#where">${{ text.header.where }}$</a></li>
<li><a href="#tickets">${{ text.header.tickets }}$</a></li>
<li><a href="#organizers">${{ text.header.organizers }}$</a></li>
<li><a href="#sponsors">${{ text.header.sponsors }}$</a></li>
</ul>
</div>
</div>
</nav>
<section id="home" class="home-section">
<div class="home-inner shadow">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 text-center">
<div class="overImg welcome">
<div class="welcomeLogo">
<img src="/img/logo.png" class="img-logo" alt="Logo JSDay 2017">
<span class="date">${{ text.home.date }}$</span>
</div>
<h1>${{ text.home.welcome }}$</h1>
<div class="flexslider intro-slider">
<ul class="slides">
<li>${{ text.home.text1 }}$</li>
<li class="large">${{ text.home.text2 }}$</li>
</ul>
</div>
<div class="text-center">
<a class="btn btn-lg btn-yellow" target="_blank" href="https://www.koliseo.com/jsdayes/jsdayes-2017">${{ text.tickets.buyticket }}$</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="streaming" class="streaming-section">
<div class="container">
<div class="row">
<div class="center-title text-center">
<h2>¡Síguenos en directo!</h2>
<p>Sigue por streaming el JSDayES, la mejor conferencia sobre JavaScript en español.</p>
<p>Patrocinado por <a href="http://www.todojs.com/">todoJS</a> y <a href="http://www.transparentcdn.com/">Transparent CDN</a>.</p>
<span class="center-line"></span>
<iframe src="http://eventos.televeo.com/player/aec" frameborder="0" width="720" height="405" allowfullscreen></iframe>
</div>
</div>
</div>
</section> -->
<section id="speakers" class="speakers-section">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<h2>${{ text.speakers.title }}$</h2>
<span class="center-line"></span>
<p>${{ text.speakers.description }}$</p>
</div>
</div>
<div class="row">
<ul class="speakers">
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker1.jpeg" width="200" class="img-circle" alt="Kris Borchers">
<span class="center-line"></span>
<h3 class="speaker-name">Kris Borchers</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/kborchers"><span class="sr-only">Twitter Kris Borchers</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">As Executive Director of the JS Foundation, Kris is guiding the organization that supports the most widely used JavaScript project in the world into an organization that has become a key player in the entire open source JavaScript ecosystem. As he works to further build and strengthen relationships with and between some of the largest corporations and most creative individuals that are using, creating and sharing open source technology, Kris is taking the Foundation's reach far beyond the browser and into projects spanning server technologies, IoT and beyond.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker2.JPG" width="200" class="img-circle" alt="Daniela Matos de Carvalho">
<span class="center-line"></span>
<h3 class="speaker-name">Daniela Matos de Carvalho</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/sericaia"><span class="sr-only">Twitter Kris Borchers</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Daniela is a web development engineer that loves to play with JavaScript. She is always searching to learn something new and gain new skills. She loves running, dancing, and photography, which makes her relax and observe the world. She is an organiser of the require-lx meetup and a mentor of Coderdojo LX, an organization that provides free education to youths by teaching them how awesome programming is!</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker3.jpeg" width="200" class="img-circle" alt="substack">
<span class="center-line"></span>
<h3 class="speaker-name">Substack</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://github.com/substack"><span class="sr-only">Github Substack</span> <i class="fa fa-github"></i></a></li>
</ul>
</div>
<p class="speaker-bio">unix philosopher. beep boop.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker8.jpg" width="200" class="img-circle" alt="Nicole Saidy">
<span class="center-line"></span>
<h3 class="speaker-name">Nicole Saidy</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/nicolesaidy"><span class="sr-only">Twitter Nicole Saidy</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Nicole is a web designer specialized in UI & UX. She’s currently a freelancer traveling around the world to share her knowledge and passion about web design by speaking at conferences & coaching at Le Wagon in Brussels, Amsterdam & Copenhagen.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker9.png" width="200" class="img-circle" alt="Jad Joubran">
<span class="center-line"></span>
<h3 class="speaker-name">Jad Joubran</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/JoubranJad"><span class="sr-only">Twitter Jad Joubran</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">
Jad is a fullstack teacher and an active conference speaker. He's on a mission to inspire developers around the world by coaching at Le Wagon coding bootcamp in Europe and regularly speaking at international conferences. Lately, Jad's focus lies on spreading knowledge about Progressive Web Apps and mentoring developers through online courses, blog articles and workshops for startups & enterprises.
</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker15.jpg" width="200" class="img-circle" alt="Laura Morillo">
<span class="center-line"></span>
<h3 class="speaker-name">Laura Morillo</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/laura_morillo"><span class="sr-only">Twitter Laura Morillo</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">
Laura is a Backend Engineer at Seedtag. She has been working with a lot of technologies (Java, Groovy, Ruby...) at the backend for 10 years and Javascript always in the frontend. Nowadays, she also uses Javascript to create microservices with Node.js. In her free time she helps to organize events with different communities and she is a Women Techmakers Lead at GDG Madrid.
</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker7.jpeg" width="200" class="img-circle" alt="Sam Bellen">
<span class="center-line"></span>
<h3 class="speaker-name">Sam Bellen</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/sambego"><span class="sr-only">Twitter Sam Bellen</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">I'm Sam Bellen and I’m a front-end software engineer at madewithlove. I love to play with the web-audio-api and other lesser known browser api's.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker19.jpg" width="200" class="img-circle" alt="José Manuel Pérez">
<span class="center-line"></span>
<h3 class="speaker-name">José Manuel Pérez</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/jmperezperez"><span class="sr-only">Twitter José Manuel Pérez</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">José is a web developer at Spotify, where he works building Spotify's web player. He likes web performance optimisation and making sites load (and look) faster.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker20.jpg" width="200" class="img-circle" alt="Simon MacDonald">
<span class="center-line"></span>
<h3 class="speaker-name">Simon MacDonald</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://www.simonmacdonald.com/"><span class="sr-only">Simon MacDonald web</span> <i class="fa fa-home"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Simon has over twenty years of development experience and has worked on a variety of projects including object oriented databases, police communication systems, speech recognition and unified messaging. His current focus is contributing to the open source PhoneGap project to enable developers to create cross platform mobile applications using Web technologies. Simon’s been building web applications since the days they were written using shell scripts and he still has nightmares about those dark days.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker24.jpg" width="200" class="img-circle" alt="Zeno Rocha">
<span class="center-line"></span>
<h3 class="speaker-name">Zeno Rocha</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/zenorocha"><span class="sr-only">Twitter Zeno Rocha</span> <i class="fa fa-twitter"></i></a></li>
<li><a href=" https://github.com/zenorocha"><span class="sr-only">Github Zeno Rocha</span> <i class="fa fa-github"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Zeno Rocha is a Principal Developer Advocate at Liferay, Inc. He dedicates a lot of his time traveling to show how awesome HTML5 is, contributing to dozens of open source projects, and creating tools to help developers build great applications. Besides that, he's a member of the Google Developers Expert program.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker25.jpg" width="200" class="img-circle" alt="Matjaž Drolc">
<span class="center-line"></span>
<h3 class="speaker-name">Matjaž Drolc</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/MatjazDrolc"><span class="sr-only">Twitter Matjaž Drolc</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Developer at Viabix AB writing code for analysis of road measurements. Mostly working in Javascript and PHP, lately exploring C++ to gain extra performance.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker28.jpg" width="200" class="img-circle" alt="David Khourshid ">
<span class="center-line"></span>
<h3 class="speaker-name">David Khourshid </h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/davidkpiano"><span class="sr-only">Twitter David Khourshid</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">David Khourshid is a Florida-based web developer, tech author, and international speaker. Also a fervent open-source contributor, he is passionate about JavaScript, CSS, Sass, functional programming, and cutting-edge front-end technologies. He is a frequent speaker at various conferences and local front-end meetups. When not behind a computer keyboard, he’s behind a piano keyboard or traveling.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker29.jpg" width="200" class="img-circle" alt="Alejandro Oviedo">
<span class="center-line"></span>
<h3 class="speaker-name">Alejandro Oviedo</h3>
<div class=" text-center">
<ul class="list-inline social">
</ul>
</div>
<p class="speaker-bio">Alejandro is a developer who loves learning new things. He is passionate about education, electronics, open-source, and community-driven events. He also helps organize NodeConf Argentina and a local Node.js meetup.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker30.jpg" width="200" class="img-circle" alt="Javier Estévez">
<span class="center-line"></span>
<h3 class="speaker-name">Javier Estévez</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/aeroalquimia"><span class="sr-only">Twitter Javier Estévez</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Desarrollador de software desde hace más de 10 años sobre todo en la parte de frontend. He visto la evolución y revolución de la programación en Javascript desde sus comienzos, el nacimiento de jQuery, las Rich Interfaces Applications, el ascenso de Flash y ActionScript, y finalmente la explosión de Javascript. Y, por supuesto, he luchado contra el código legacy en mil batallas. Actualmente lidero el equipo de desarrollo frontend de Tecnilógica.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker31.jpg" width="200" class="img-circle" alt="Natalia Vidal">
<span class="center-line"></span>
<h3 class="speaker-name">Natalia Vidal</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/erikiva"><span class="sr-only">Twitter Natalia Vidal</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Natalia Vidal Habiéndome dedicado durante muchos años al backend con incursiones al mundo web, recientemente he cambiado de tercio. En la actualidad hago desarrollo front en Tecnilógica y ayudo a preparar a las nuevas generaciones de desarrolladores web en Ironhack. Desenmarañar código es mi sino.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker32.jpg" width="200" class="img-circle" alt="Pablo Almunia">
<span class="center-line"></span>
<h3 class="speaker-name">Pablo Almunia</h3>
<div class=" text-center">
<ul class="list-inline social"></ul>
</div>
<p class="speaker-bio">Programador, arquitecto de sistemas, empresario y filosofo, en definitiva, un hombre extraño, pero apasionado en todo lo que hace.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker11.jpg" width="200" class="img-circle" alt="Eduardo Sada">
<span class="center-line"></span>
<h3 class="speaker-name">Eduardo Sada</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/aeroalquimia"><span class="sr-only">Twitter Eduardo Sada</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Eduardo es Especialista Javascript en Kairós DS. Evangelista de Polymer, con más de 12 años de experiencia en desarrollo Front-end; hoy se dedica, según su madre, a «hacer caritas y botoncitos» de manera profesional. Suele dar charlas en eventos de programación para no pagar la entrada.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker12.jpg" width="200" class="img-circle" alt="Bea Hernández">
<span class="center-line"></span>
<h3 class="speaker-name">Bea Hernández</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/chucheria"><span class="sr-only">Twitter Bea Hernández</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Data Scientist actualmente trabajando en redes neuronales en DatMean, se encontró con el JavaSript en su camino por crear un visualización bonita, decente, merecedora de una palmadita en la espalda. Aparte de modelos y visualizaciones, coorganiza R-Ladies Madrid, desde donde se fomenta la diversidad de género en los trabajos STEM.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker13.jpg" width="200" class="img-circle" alt="Ibon Tolosana">
<span class="center-line"></span>
<h3 class="speaker-name">Ibon Tolosana</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/hyperandroid"><span class="sr-only">Ibon Tolosana</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Ibon was CTO and co-founder at Ludei, as well as a failed entrepreneur at Novoplay, and CTO and the person behind the project juegon.com. He thinks the web will win over all other platforms and that's why he's devoted countless hours on HTML5, webgl, nodejs, native v8 and all web stuff. For the last two years, he's been a native ios/android hardcore developer, but just for a living. Father of two, doer, dreamer and a snob chocolate eater.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker10.jpg" width="200" class="img-circle" alt="Pedro J. Molina">
<span class="center-line"></span>
<h3 class="speaker-name">Pedro J. Molina</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/pmolinam"><span class="sr-only">Pedro J. Molina</span> <i class="fa fa-twitter"></i></a></li>
<li><a href="https://github.com/pjmolina"><span class="sr-only">Github Pedro J. Molina</span> <i class="fa fa-github"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Doctor en Informática especializado con pasión en el modelado y generación de código. Desde Metadev construye herramientas para microservicios y proporciona consultoría y formación en diseño de APIs, Microservicios, Typescript, NodeJS, Angular, MongoDB y Docker a equipos de desarrollo. En vidas pasadas ha sido CTO y Director de I+D en Icinetic y Arquitecto de Software en Capgemini. Invariantemente, le sigue gustando remangarse a diario para escribir código.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker21.jpg" width="200" class="img-circle" alt="Belén Albeza">
<span class="center-line"></span>
<h3 class="speaker-name">Belén Albeza</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/ladybenko"><span class="sr-only">Belén Albeza</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">
Belén es desarrolladora y trabaja actualmente en el equipo de
Developer Relations en Mozilla. Le interesan los estándares web, el
código de calidad y el desarrollo de videojuegos. Anteriormente, ha
trabajado tanto en startups como en corporaciones, desarrollando
aplicaciones, prototipos de I+D y videojuegos. Belén vive actualmente
en Barcelona y le gusta el heavy metal, participar en game jams y
jugar al Mass Effect.
</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker22.png" width="200" class="img-circle" alt="Juliet Moreiro Bockhop">
<span class="center-line"></span>
<h3 class="speaker-name">Juliet Moreiro Bockhop</h3>
<div class=" text-center">
<ul class="list-inline social">
</ul>
</div>
<p class="speaker-bio">Ingeniero de Microsoft Dynamics 365 de día y programadora de cacharritos de noche, desde smart home devices a dispositivos controlados por voz y robots con mal genio, siempre aprovechando lo mejor de diferentes tecnologías.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker4.png" width="200" class="img-circle" alt="Diego Lafuente Garcia">
<span class="center-line"></span>
<h3 class="speaker-name">Diego Lafuente Garcia</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/tufosa"><span class="sr-only">Twitter Diego Lafuente Garcia</span> <i class="fa fa-twitter"></i></a></li>
<li><a href="https://github.com/DiegoTUI"><span class="sr-only">Github Diego Lafuente Garcia</span> <i class="fa fa-github"></i></a></li>
</ul>
</div>
<p class="speaker-bio">
Desarrollo software desde mi más tierna infancia. De pequeño aprendí BASIC y a copiar los pokes del MicroManía. De ahí al C y al C++. Ya lo decía mi madre: empiezas probando la cerveza y acabas enganchado a la heroína. En ocasiones monto empresas: una <a target="_blank" href="http://makingthings.es/">tienda de ropa en Madrid</a>, una <a href="http://www.bookaplan.com/" target="_blank">startup fracasada de viajes</a> y una <a href="http://www.acelerame.org/">fundación para potenciar el talento en España</a>. Los últimos 7 años he estado vendiendo mi alma en cómodos plazos al diablo de Javascript: en su mayoría al de node.js, pero también al de Titanium, al de Ionic y al de Angular. Llevo casi dos años construyendo desde cero el primer meta-book de taxis del mundo. Desarrollado íntegramente con tecnologías Javascript.
</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker16.jpg" width="200" class="img-circle" alt="Paul Goldbaum">
<span class="center-line"></span>
<h3 class="speaker-name">Paul Goldbaum</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/paulgoldbaum"><span class="sr-only">Twitter Paul Goldbaum</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">CTO en seedtag. Amante de la programación funcional y los sistemas distribuidos, me he movido siempre entre las áreas de programación y sistemas. Cat person.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker27.jpg" width="200" class="img-circle" alt="Elena Torro">
<span class="center-line"></span>
<h3 class="speaker-name">Elena Torro</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/Eletorro"><span class="sr-only">Twitter Elena Torro</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Programadora. En mi tiempo libre intento sin éxito mantener un blog personal y arreglar el cuello de botella de mi lista de TODO's, entre otros. Me interesa principalmente la educación a través de la tecnología. Actualmente trabajo como desarrolladora FrontEnd en myABCKit.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker5.png" width="200" class="img-circle" alt="Rafael Casuso Romate">
<span class="center-line"></span>
<h3 class="speaker-name">Rafael Casuso Romate</h3>
<div class=" text-center">
<ul class="list-inline social">
</ul>
</div>
<p class="speaker-bio">CTO en Stay y CEO de SnowStorm con más de 10 años de experiencia desarrollando tanto Frontend como Backend, especializado en tecnologías como BackboneJS, ReactJS, VueJS y Arquitectura NodeJS aplicada a Inteligencias Conversacionales y Aplicaciones de Comunicación en Tiempo Real.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker6.jpg" width="200" class="img-circle" alt="Jon Rojí">
<span class="center-line"></span>
<h3 class="speaker-name">Jon Rojí</h3>
<div class=" text-center">
<ul class="list-inline social">
</ul>
</div>
<p class="speaker-bio">Un tipo de gustos sencillos y pasión por JavaScript. Arquitecto front en Sngular, donde comparte su pasión por las arquitecturas web, propiciando historias de amor estricto entre desarrolladores y código. Defensor de lo estándar, crítico con el código del día anterior, enfocado actualmente en sacar el máximo partido a Polymer y Angular 2, actualmente desarrollando starter kits y arquitecturas de referencia en serenity-frontstack (https://github.com/serenity-frontstack) para el grupo santander con Angular 2 y Polymer.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker14.jpeg" width="200" class="img-circle" alt="Pedro Palao">
<span class="center-line"></span>
<h3 class="speaker-name">Pedro Palao</h3>
<div class=" text-center">
<ul class="list-inline social">
</ul>
</div>
<p class="speaker-bio">Licenciado en Matemáticas, especialidad de Computación. Unos años como profesor en el Departamento de Informática de la Universidad Complutense. Luego programador en el Departamento de Seguridad Informática en Bankinter. Actualmente CTO en Logtrust (www.logtrust.com), una empresa dedicada a big data en tiempo real.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker17.jpg" width="200" class="img-circle" alt="Álvaro Quirós">
<span class="center-line"></span>
<h3 class="speaker-name">Álvaro Quirós</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/alodev"><span class="sr-only">Twitter Álvaro Quirós</span> <i class="fa fa-twitter"></i></a></li>
<li><a href="https://github.com/alo"><span class="sr-only">Github Álvaro Quirós</span> <i class="fa fa-github"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Web Developer desde que conoció los “encantos” de JQuery. Frontend lead en Coderty, proyecto que desde hace unos años es su vida, su casa y su oficina, y donde Angular ocupa un espacio central, responsabilizándose de proyectos de todo tipo de envergaduras. Amante del deporte, los animales y las comunidades de aprendizaje en la que poder aportar y obtener conocimiento, Angular Almería por ejemplo. Habitante de Almería por necesidad vital y paisaje lunar, aunque viajante inquieto para poder comparar.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker18.jpg" width="200" class="img-circle" alt="Carlos Carmona">
<span class="center-line"></span>
<h3 class="speaker-name">Carlos Carmona</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/ccarmona"><span class="sr-only">Twitter Carlos Carmona</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Programador Full-stack. Más de 10 años como Backend y Web Developer, con apenas cumplidos los 30, lo que delata su precocidad. Poliglota del código y obseso de la optimización de procesos, actualmente vuelca su día a día en el proyecto de su vida, Coderty. Amante de la tecnología, la fotografía y todo aquello que requiera de método y precisión. Habitante de Almería y patrón de barco. </p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker26.jpg" width="200" class="img-circle" alt="Jesús Leganés">
<span class="center-line"></span>
<h3 class="speaker-name">Jesús Leganés</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/el_piranna"><span class="sr-only">Twitter Jesús Leganés</span> <i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<p class="speaker-bio">Geek and mad inventor since a child, I have been involved in almost all areas of computers and informatics. I have been a WebRTC pioneer with ShareIt! P2P webapp and a Node.js guru designing the APIs of Kurento media server, and now I'm involved as lead developer of NodeOS and working on my PhD. about processing tecniques of neurological microscopic images.</p>
</div>
</li>
<li>
<div class="img-speaker-box">
<img src="/img/speakers/speaker33.jpg" width="200" class="img-circle" alt="José Manuel García">
<span class="center-line"></span>
<h3 class="speaker-name">José Manuel García</h3>
<div class=" text-center">
<ul class="list-inline social">
</ul>
</div>
<p class="speaker-bio">Sema, con S, es como todos me conocen. Java developer en los inicios de programador, pero reconvertido ahora con el tiempo y las inquietudes a JavaScripter en todas sus variantes, desde el navegador hasta el backend pasando por todo aquello que sea capaz de interpretar y ejecutar código, compaginando ratos de aventuras con Android, cervezas y amigos.</p>
</div>
</li>
<!--
<li>
<div class="img-speaker-box">
<img src="img/speakers/speaker-8.jpg" width="200" height="200" class="img-circle" alt="Javier Vélez">
<span class="center-line"></span>
<h3>Javier Vélez</h3>
<div class=" text-center">
<ul class="list-inline social">
<li><a href="https://twitter.com/@javiervelezreye"><span class="sr-only">Twitter de Javier Vélez</span> <i class="fa fa-twitter"></i></a></li>
<li><a href="http://www.javiervelezreyes.com"><span class="sr-only">Página de Javier Vélez</span> <i class="fa fa-home"></i></a></li>
</ul>
</div>
<p class="speaker-bio">
Licenciado por la UPM desde el año 2001 y doctor en informática por la UNED desde el año 2009, Javier conjuga sus labores como profesor e investigador con la consultoría y la formación técnica para empresa. Su línea de trabajo actual se centra en la innovación y desarrollo de tecnologías para la Web. Además realiza actividades de evangelización y divulgación en diversas comunidades IT y es coordinador de varios grupos de ámbito local como NodeJS Madrid o Madrid JS. Forma parte del programa Polymer Polytechnic Speaker y es mentor del capítulo de Madrid de Node School.</p>
</div>
</li> -->
</ul>
</div>
</div>
</section>
<section id="schedule" class="schedule-section">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<h2>${{ text.schedule.title }}$</h2>
<span class="center-line"></span>
<p>${{ text.schedule.description1 }}$</p>
<p>${{ text.schedule.description2 }}$</p>
</div>
</div>
<div class="row">
<div class="koliseo-schedule"></div>
<script>
/*! loadJS: load a JS file asynchronously. [c]2014 @scottjehl, Filament Group, Inc. (Based on http://goo.gl/REQGQ by Paul Irish). Licensed MIT */
function loadJS( src, cb ){
"use strict";
var ref = window.document.getElementsByTagName( "script" )[ 0 ];
var script = window.document.createElement( "script" );
script.src = src;
script.async = true;
ref.parentNode.insertBefore( script, ref );
if (cb && typeof(cb) === "function") {
script.onload = cb;
}
return script;
}
function onLoad() {
if (typeof Koliseo !== 'undefined' && Koliseo.agenda && typeof fetch !== 'undefined') {
Koliseo.agenda.render({
c4pUrl: 'https://www.koliseo.com/jsdayes/jsdayes-2017/r4p/5765283616653312',
agendaUrl: 'https://www.koliseo.com/jsdayes/jsdayes-2017/r4p/5765283616653312/agenda',
element: document.querySelector('.koliseo-schedule'),
oauthClientId: '5675156680736768'
});
}
}
(typeof fetch === 'undefined') && loadJS('/js/koliseo-polyfill.js', onLoad);
loadJS('/js/koliseo-agenda.js', onLoad);
</script>
</div>
</div>
</section>
<section id="event-presentation">
<div class="container">
<div class="row description">
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<h2>${{ text.eventPresentation.title }}$</h2>
<p>${{ text.eventPresentation.description }}$</p>
<p>${{ text.eventPresentation.description2 }}$<p>
</div>
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<!-- <a target="_blank" href="/call-for-proposals-${{ _lang_ }}$.html" class="btn btn-dark btn-lg">${{ text.cfp.title }}$</a> -->
<!-- <a target="_blank" href="https://www.koliseo.com/jsdayes/jsdayes-2017/r4p/5765283616653312#/" class="btn btn-dark btn-lg">${{ text.cfp.title }}$</a> -->
</div>
</div>
<div class="row">
<div class="col-sm-8 col-sm-offset-3">
<iframe width="560" height="315" src="https://www.youtube.com/embed/UQ2tKT_tS90" frameborder="1" allowfullscreen></iframe>
</div>
</div>
<div class="row hide-${{ _lang_ }}$">
<div class="col-sm-8 col-sm-offset-2">
<div class="flexslider testi-slider wow animated fadeInUp" data-wow-delay=".2s">
<br><br>
<div class="twitter-icon"><i class="fa fa-twitter"></i></div>
<ul class="slides">
<li>
<div class="testi-item testi-slider-item">
<p>
Lo mejor la organización del evento y el nivel en general de los conferenciantes. #JSDayES Un 10
</p>
<p><i>@jdonsan</i></p>
</div>
</li>
<li>
<div class="testi-item testi-slider-item">
<p>
Felicidades al equipo de JSDayES por un gran evento. #JSDayES
</p>
<p><i>@victor_cuervo</i></p>
</div>
</li>
<li>
<div class="testi-item testi-slider-item">
<p>
Enhorabuena a la organización,ponentes y patrocinadores de #JSDayES 2015.Con ganas de poder asistir a la edición de 2016
</p>
<p><i>@3mw3m</i></p>
</div>
</li>
<li>
<div class="testi-item testi-slider-item">
<p>
Genial el JSDayES de hoy. La última charla ya la he visto en streaming en casa. Esperando con ganas el siguiente! #JSDayES
</p>
<p><i>@marcoocram</i></p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="proposals" class="proposals">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<h2>${{text.cfp.join}}$</h2>
<span class="center-line"></span>
<p>${{text.cfp.description}}$</p>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3 text-center">
<h3>${{text.cfp.dates}}$</h3>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<ul class="proposals-style list-unstyled">
<li class="clearfix">
<div class="detail">
<h4>${{text.cfp.limit}}$</h4>
<span class="date">${{text.cfp.datelimit}}$</span>
</div>
</li>
<li class="clearfix">
<div class="detail">
<h4>${{text.cfp.notificationTitle}}$</h4>
<span>${{text.cfp.notification}}$</span>
<span class="date">${{text.cfp.notificationlimit}}$</span>
</div>
</li>
</ul>
</div>
</div> <br><br>
<div class="row">
<div class="col-sm-6 col-sm-offset-3 text-center">
<a target="_blank" href="/call-for-proposals-${{ _lang_ }}$.html" class="btn btn-dark btn-lg">${{ text.cfp.title }}$</a>
<a target="_blank" href="https://www.koliseo.com/jsdayes/jsdayes-2017/r4p/5765283616653312#/" class="btn btn-dark btn-lg">${{ text.cfp.title }}$</a>
</div>
</div>
</div>
</section> -->
<section id="where" class="where-section">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<h2>${{ text.header.where }}$</h2>
<span class="center-line"></span>
<!-- <p>
</p> -->
</div>
</div>
<div class="row">
<div class="col-sm-5 col-sm-offset-1">
<h3>FUNDACIÓN PABLO VI</h3>
Paseo de Juan XXIII, 3. 28040 Madrid <br> <a target="_blank" href="http://www.fpablovi.org/index.php/auditorio">fpablovi.org</a> <br><br>
<h4><i class="fa fa-bus"></i> ${{ text.where.transport }}$</h4>
Metro - línea 6 - Metropolitano<br>
Bus - circular 1, circular 2, 132, L06<br><br>
<img class="img-responsive" src="/img/AuditorioCabecera01.jpg" width="460" alt="FUNDACIÓN PABLO VI">
</div>
<div class="col-sm-5">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3036.372948502879!2d-3.719933998221819!3d40.44488178352964!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xd422848fae84da9%3A0xbf3a2ad38f673220!2sPaseo+de+Juan+XXIII%2C+3%2C+28040+Madrid!5e0!3m2!1ses!2ses!4v1489601298647" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
</div>
</section>
<section id="tickets" class="tickets-section">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<h2>${{ text.tickets.title }}$</h2>
<span class="center-line"></span>
</div>
</div>
<div class="row tickets-row tickets-row-1">
<div class="col-md-4 col-sm-6 workshop">
<div class="pricing-simple">
<h3>${{ text.tickets.specialWorkshop }}$</h3>
<h4>${{ text.tickets.specialWorkshopPrice }}$</h4>
<ul class="list-unstyled">
<li><i class="fa fa-check-square"></i>${{ text.tickets.specialWorkshopDesc }}$</li>
</ul>
<div class="text-center">
<a class="btn btn-lg btn-yellow" target="_blank" href="https://www.koliseo.com/jsdayes/jsdayes-2017">${{ text.tickets.buy }}$</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="pricing-simple">
<h3>${{ text.tickets.normal }}$</h3>
<h4>${{ text.tickets.normalTicketPrice }}$</h4>
<ul class="list-unstyled">
<li><i class="fa fa-check-square"></i>${{ text.tickets.point1 }}$</li>
<li><i class="fa fa-check-square"></i>${{ text.tickets.point2 }}$</li>
<li><i class="fa fa-check-square"></i>${{ text.tickets.point3 }}$</li>
</ul>
<div class="bottom">
<div class="text-center">
<a class="btn btn-lg btn-yellow" target="_blank" href="https://www.koliseo.com/jsdayes/jsdayes-2017">${{ text.tickets.buy }}$</a>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="pricing-simple special">
<h3>${{ text.tickets.special }}$</h3>
<h4>${{ text.tickets.specialTicketPrice }}$</h4>
<ul class="list-unstyled">
<li><i class="fa fa-check-square"></i>${{ text.tickets.specialpoint }}$</li>
</ul>
<div class="bottom">
<div class="text-center">
<a class="btn btn-lg btn-yellow" target="_blank" href="https://www.koliseo.com/jsdayes/jsdayes-2017">${{ text.tickets.buy }}$</a>
</div>
</div>
<p class="warning">${{ text.tickets.warning }}$</p>
</div>
</div>
</div>
<div class="row tickets-row">
<div class="col-md-4 col-sm-6">
<div class="pricing-simple popular">
<h3>${{ text.tickets.superearly }}$</h3>
<h4>${{ text.tickets.superearlyprice }}$</h4>
<ul class="list-unstyled">
<li><i class="fa fa-check-square"></i>${{ text.tickets.point1 }}$</li>
<li><i class="fa fa-check-square"></i>${{ text.tickets.point2 }}$</li>
<li><i class="fa fa-check-square"></i>${{ text.tickets.point3 }}$</li>
</ul>
<!-- <div class="text-center">
<a class="btn btn-lg btn-yellow" target="_blank" href="https://www.koliseo.com/jsdayes/jsdayes-2017">${{ text.tickets.buy }}$</a>
</div> -->
<div class="bottom">
<p><strong>${{ text.tickets.soldout }}$</strong></p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="pricing-simple popular">
<h3>${{ text.tickets.early }}$</h3>
<h4>${{ text.tickets.earlyprice }}$</h4>
<ul class="list-unstyled">
<li><i class="fa fa-check-square"></i>${{ text.tickets.point1 }}$</li>
<li><i class="fa fa-check-square"></i>${{ text.tickets.point2 }}$</li>
<li><i class="fa fa-check-square"></i>${{ text.tickets.point3 }}$</li>
</ul>
<div class="bottom">
<p><strong>${{ text.tickets.soldout }}$</strong></p>
</div>
<!-- <div class="text-center">
<a class="btn btn-lg btn-yellow" target="_blank" href="https://www.koliseo.com/jsdayes/jsdayes-2017">${{ text.tickets.buy }}$</a>
</div> -->
</div>
</div>
</div>
<!-- <div class="col-md-4 col-sm-6">
<div class="pricing-simple">
<h3>Normales</h3>
<h4>50€</h4>
<ul class="list-unstyled">
<li><i class="fa fa-check-square"></i> Unconference y Workshop (29/04)</li>
<li><i class="fa fa-check-square"></i> Acceso a charlas (30/04)</li>
<li><i class="fa fa-check-square"></i> Comida (30/04) </li>
<li><i class="fa fa-check-square"></i> Pack JSDayES </li>
</ul>
<div class="bottom">
<p><strong>AGOTADAS</strong></p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="pricing-simple">
<h3>Cedidas por Google Campus Madrid</h3>
<h4>50€</h4>
<ul class="list-unstyled">
<li><i class="fa fa-check-square"></i> Unconference y Workshop (29/04)</li>
<li><i class="fa fa-check-square"></i> Acceso a charlas (30/04)</li>
<li><i class="fa fa-check-square"></i> Comida (30/04) </li>
<li><i class="fa fa-check-square"></i> Pack JSDayES </li>
</ul>
<div class="bottom">
<p><strong>AGOTADAS</strong></p>
</div>
</div>
</div> -->
</div>
</div>
</section>
<section class="banner shadow">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<div class="overImg">
<h2>${{ text.contact.title }}$</h2>
<p>${{ text.contact.description }}$</p><br /><br />
<div class="text-center">
<a class="btn btn-lg btn-yellow" href="mailto:hola@jsday.es">${{ text.contact.button }}$</a>
</div>
</div>
</div>
</div>
</div>
</section><!--contact-->
<section id="organizers" class="section-organizers">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<h3>${{ text.organizers.title }}$</h3>
<span class="center-line"></span>
<p>${{ text.organizers.description }}$</p>
</div>
</div>
<div class="row">
<ul id="organizers-slider" class="organizers-slider">
<li class="item">
<div class="organizers-box">
<a href="http://www.meetup.com/es-ES/Madrid-Polymer-Group/"><img src="/img/organizacion/organizer-4.png" width="231" height="80" class="img-responsive" alt="Madrid Polymer Group"></a>
</div>
</li>
<li class="item">
<div class="organizers-box">
<a href="http://www.meetup.com/es-ES/Node-js-Madrid/"><img src="/img/organizacion/organizer-2.png" width="268" height="85" class="img-responsive" alt="NodeJS Madrid"></a>
</div>
</li>
<li class="item">
<div class="organizers-box">
<a href="http://www.meetup.com/es-ES/madridjs/"><img src="/img/organizacion/organizer-3.png" width="268" height="84" class="img-responsive" alt="Madrid JS"></a>
</div>
</li>
<li class="item">
<div class="organizers-box">
<a href="http://www.meetup.com/es-ES/AngularJS_Madrid/"><img src="/img/organizacion/organizer-1.png" width="242" height="86" class="img-responsive" alt="AngularJS Madrid"></a>
</div>
</li>
<!-- <li class="item">
<div class="organizers-box">
<a href="http://www.gacetatecnologica.com/"><img src="img/organizacion/organizer-5.png" class="img-responsive" width="268" height="91" alt="Gaceta Tecnológica"></a>
</div>
</li> -->
</ul>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3 center-title text-center codigo">
<h3>${{ text.codeOfConduct.title }}$</h3>
<span class="center-line"></span>
<p>${{ text.codeOfConduct.description }}$</p>
</div>
</div>
</div>
</section><!--organizers-->
<section id="sponsors" class="section-sponsors">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 center-title text-center">
<h3>${{ text.sponsors.title }}$</h3>
<span class="center-line"></span>
<p>${{ text.sponsors.description }}$</p>
</div>
</div>
<!-- <div class="row">
<div class="col-sm-6 col-sm-offset-3 text-center">
<h4>Diamond</h4>
</div>
</div>
<div class="row">
<ul class="logos">
<li>
<div class="box">
<a href="http://www.gft.com"><img src="img/sponsors/gft.png" width="270" height="49" class="img-responsive" alt="GFT"></a>
</div>
</li>
</ul>
</div> -->
<div class="row">
<div class="col-sm-6 col-sm-offset-3 text-center">
<h4>Platinum</h4>
</div>
</div>
<div class="row">
<ul class="logos">
<li>
<div class="box">
<a href="http://www.gft.com/es"><img src="/img/sponsors/GFT_Logo.jpg" width="270" class="img-responsive" alt="GFT"></a>
</div>
</li>
<li>
<div class="box">
<a href="https://cabify.com/"><img src="/img/sponsors/cabify-logo.png" width="270" class="img-responsive" alt="Cabify"></a>
</div>
</li>
<li>
<div class="box">
<a href="https://www.liferay.com/"><img src="/img/sponsors/liferay.png" width="270" class="img-responsive" alt="Liferay"></a>
</div>
</li>
<li>
<div class="box">
<a href="https://www.beeva.com/"><img src="/img/sponsors/beeva.jpg" width="270" class="img-responsive" alt="BEEVA"></a>
</div>
</li>
</ul>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3 text-center">
<h4>Gold Plus</h4>
</div>
</div>
<div class="row">
<ul class="logos">