-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
557 lines (512 loc) · 26.5 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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://conf.scipyla.org/"/>
<meta name="description" content="SciPyLA 2018 - A conferência de Python científico na América Latina">
<meta name="author" content="A comunidade SciPyLA">
<title>SciPyLA 2018</title>
<!-- Bootstrap core CSS -->
<link href="./assets/css/bootstrap.min.css" rel="stylesheet">
<!-- SciPyLA Bootstrap theme -->
<link href="./assets/css/theme.css" rel="stylesheet">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="57x57" href="./assets/icons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="./assets/icons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="./assets/icons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="./assets/icons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./assets/icons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./assets/icons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./assets/icons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./assets/icons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/icons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="./assets/icons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./assets/icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/icons/favicon-16x16.png">
<link rel="manifest" href="./assets/icons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./assets/icons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Icons -->
<link href="./assets/css/fonts.css" rel="stylesheet">
<link href="./assets/css/Roboto+Condensed+Yanone+Kaffeesatz.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./assets/css/custom.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]>
<script src="./assets/vendors/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="./assets/vendors/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="./assets/vendors/html5shiv.min.js"></script>
<script src="./assets/vendors/respond.min.js"></script>
<![endif]-->
<link href="//cdn-images.mailchimp.com/embedcode/classic-10_7.css" rel="stylesheet" type="text/css">
<script language="javascript">
window.route = {section: 'home', page: 'index'}
</script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-80867706-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="main" ng-app="scipyla" ng-controller="MainCtl">
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse text-uppercase" >
<div ng-include="navTemplate.url"></div>
</nav>
<header class="main">
<div id="home-carousel" class="carousel slide bg-dark" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#home-carousel" data-slide-to="0" class="active"></li>
<li data-target="#home-carousel" data-slide-to="1"></li>
<li data-target="#home-carousel" data-slide-to="2"></li>
<li data-target="#home-carousel" data-slide-to="3"></li>
<li data-target="#home-carousel" data-slide-to="4"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active text-center" data-bg="slide-1">
<div class="carousel-item__container carousel-item__container--slide-1 vertical-center">
<div class="self-vertical-center">
<img src="./assets/img/scipyla.h.svg" width="395"
class="hidden-xs center-block img-responsive"/>
<img src="./assets/img/scipyla.v.svg" width="138"
class="visible-xs center-block img-responsive"/>
<p class="lead" ng-bind="carousel[0].lead[0]"></p>
<p>
<a ng-repeat="btn in carousel[0].btn" href="{{btn.href}}" class="btn btn-warning" ng-bind="btn.caption"></a>
</p>
<p class="lead">
<span ng-bind="carousel[0].lead[1]"></span> <br class="visible-xs"><span ng-bind="carousel[0].lead[2]"></span>
</p>
<p class="lead">
<span class="lead"> <span ng-bind="carousel[0].lead[3]"></span> <br class="visible-xs"/>
<span class="hidden-xs">,</span>
<span ng-bind="carousel[0].lead[4]"></span>
</span>
</p>
</div>
</div>
</div>
<div class="item text-center" data-bg="slide-2">
<div class="carousel-item__container carousel-item__container--slide-2 vertical-center">
<div class="self-vertical-center">
<picture>
<!--
<source srcset="./assets/img/sponsor.levels.es.webp" type="image/webp">
-->
<source srcset="./assets/img/sponsor.levels.pt.png" type="image/png">
<img class="img-responsive center-block" src="./assets/img/sponsor.levels.pt.png" alt="">
</picture>
<p class="lead">
<span class="lead" ng-bind="carousel[1].lead[0]"></span>
</p>
<a href="mailto:sponsor@scipyla.org" class="btn btn-warning" ng-bind="carousel[1].lead[1]"></a>
</div>
</div>
</div>
<!-- Sponsors -->
<div class="item text-center" data-bg="slide-3">
<div class="carousel-item__container carousel-item__container--slide-3 vertical-center">
<!-- div class="self-vertical-center">
<picture>
<source srcset="./assets/img/home.latamtech.png" type="image/png">
<img class="img-responsive center-block" src="./assets/img/home.latamtech.png" alt="@TheLatamtech - Gold sponsor of SciPyLA 2018">
</picture>
<p class="lead">
<span class="lead" ng-bind="carousel[2].lead[0]"></span>
</p>
<a href="" class="btn btn-warning" ng-bind="carousel[2].lead[1]"></a>
</div -->
</div>
</div>
<div class="item text-center" data-bg="slide-4">
<div class="carousel-item__container carousel-item__container--slide-2 vertical-center">
<div class="self-vertical-center">
<p class="lead">
<span class="lead" ng-bind="carousel[3].lead[0]"></span>
</p>
<picture>
<!--
<source srcset="./assets/img/sponsor.levels.es.webp" type="image/webp">
-->
<source srcset="./assets/img/logo_unicuritiba_branca_horizontal.png" type="image/png">
<img class="img-responsive center-block" src="./assets/img/sponsor.levels.pt.png" alt="">
</picture>
<br>
<a href="http://unicuritiba.edu.br/" class="btn btn-warning" ng-bind="carousel[3].lead[1]" target="_blank"></a>
</div>
</div>
</div>
<div class="item text-center" data-bg="slide-5">
<div class="carousel-item__container carousel-item__container--slide-2 vertical-center">
<div class="self-vertical-center">
<p class="lead">
<span class="lead" ng-bind="carousel[4].lead[0]"></span>
</p>
<picture>
<!--
<source srcset="./assets/img/sponsor.levels.es.webp" type="image/webp">
-->
<source srcset="./assets/img/apyb-logo.svg" type="image/png">
<img class="img-responsive center-block" src="./assets/img/sponsor.levels.pt.png" alt="">
</picture>
<br>
<a href="http://associacao.python.org.br/" class="btn btn-warning" ng-bind="carousel[4].lead[1]" target="_blank"></a>
</div>
</div>
</div>
<!-- End Sponsors -->
</div>
</div>
<a class="left carousel-control" href="#home-carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Anterior</span>
</a>
<a class="right carousel-control" href="#home-carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Próxima</span>
</a>
</div>
</header>
<section>
<div id="about" class="container">
<div class="row text-center">
<h2 ng-bind="scipy_america.title"></h2>
<p ng-bind="scipy_america.description"></p>
</div>
<div class="row">
<div class="col-md-offset-2 col-md-8 col-xs-12 text-center" id="planets-container">
<div id="planets-img">
<picture>
<source srcset="./assets/img/planets-bg.webp" type="image/webp">
<source srcset="./assets/img/planets-bg.png" type="image/png">
<img class="img-responsive center-block" src="./assets/img/planets-bg.png" alt=""></picture>
<div class="row" id="planets">
<strong>
<div class="col-xs-4 text-center">
<img class="img-responsive center-block" src="./assets/img/planet.py.svg"/>
<p ng-bind="scipy_america.headers.python"></p>
</div>
<div class="col-xs-4 text-center">
<img class="img-responsive center-block" src="./assets/img/planet.sci.svg"/>
<p ng-bind="scipy_america.headers.science"></p>
</div>
<div class="col-xs-4 text-center">
<div class="overlay-target-block">
<img class="img-responsive center-block" src="./assets/img/planet.la.svg"/>
<img id="planet-la" src="./assets/img/planet.la.svg"/>
</div>
<div id="planets-satellite"></div>
<p ng-bind="scipy_america.headers.latin_america"></p>
</div>
</strong>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="local">
<div class="jumbotron jumbotron-dark" id="venue">
<div class="container">
<h2>Curitiba</h2>
<div class="local__text">
<p ng-repeat="pr in curitiba.paragraphs" ng-bind="pr"></p>
</div>
<a class="btn btn-lg btn-warning" href="#" ng-bind="curitiba.info"></a>
</div>
</div>
</section>
<div class="container">
<section>
<div class="row marketing text-center" id="org">
<div class="col-md-4" ng-repeat="mark in marketing">
<picture class="img-circle">
<source ng-repeat="src in mark.sources" srcset="{{src.srcset}}" type="{{src.type}}">
<img src="{{mark.img.src}}" class="{{mark.img.class}}">
</picture>
<h3 ng-bind="mark.title"></h3>
<p ng-bind="mark.description"></p>
<div class="marketing-action">
<a href="{{mark.href}}" class="btn btn-info center-block" ng-bind="mark.action"></a>
</div>
</div>
</div>
</section>
</div>
<section>
<div class="jumbotron jumbotron-blue" id="timeline">
<div class="jumbotron-body">
<div class="container">
<h3 ng-bind="activities.title"></h3>
<div class="row">
<div ng-repeat="(idx, cant) in activities.amounts track by $index" class="col-xs-1" ng-class="{ 'col-xs-offset-5': idx == 0, 'col-sm-offset-4' : idx == 0}">
<strong ng-bind="cant + ((idx == activities.amounts.length - 1)?'*':'')"></strong>
</div>
</div>
<div class="row">
<div ng-repeat="(idx, year) in activities.years" class="col-xs-1" ng-class="{ 'col-xs-offset-5': idx == 0, 'col-sm-offset-4': idx == 0 }">
<picture>
<source srcset="./assets/img/bar{{year}}.webp" type="image/webp">
<source srcset="./assets/img/bar{{year}}.png" type="image/png">
<img src="./assets/img/bar{{year}}.webp" class="img-responsive"/>
</picture>
</div>
</div>
<div class="row">
<div ng-repeat="(idx, year) in activities.years"" class="col-xs-1" ng-class="{ 'col-xs-offset-5': idx == 0, 'col-sm-offset-4': idx == 0 }">
<span class="hidden-xs" ng-bind="year"></span><span class="visible-xs" ng-bind="'\'' + (year % 100)"></span>
</div>
</div>
<div class="row overlay-target-block">
<div class="overlay col-xs-offset-5 col-sm-offset-4 col-xs-5 timeline-scale">
<hr/>
</div>
<div ng-repeat="(idx, year) in activities.years" class="col-xs-1" ng-class="{ 'col-xs-offset-5': idx == 0, 'col-sm-offset-4': idx == 0 }">
<div class="center-block timeline-bullet">•</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" ng-repeat="item in activities.rows">
<div class="col-xs-4 col-sm-3 text-right"><span class="{{item.icon}}"></span>{{item.title}}</div>
<div class="col-xs-1 col-sm-1"> →</div>
<div class="col-xs-1 col-sm-1" ng-repeat="label in item.labels"><code class="label label-warning label-round" ng-bind="label"></code></div>
<div class="col-xs-1 col-sm-2 hidden-xs" ng-bind="item.suffix"></div>
</div>
<div class="row visible-xs">
<div class="col-xs-12">
<p>
<small>
<small>
<small ng-bind="activities.suffix"></small>
</small>
</small>
</p>
</div>
</div>
</div>
</div>
</section>
<section id="gallery" class="section-nospace">
<div class="text-center bg-grey">
<div class="container">
<h3 ng-bind="gallery.title"></h3>
<div class="col-md-3 col-sm-6" ng-repeat="item in gallery.items">
<a href="#" class="overlay-target hover">
<picture>
<source srcset="./assets/img/scipyla{{item.year}}.webp" type="image/webp">
<source srcset="./assets/img/scipyla{{item.year}}.png" type="image/png">
<img src="./assets/img/scipyla{{item.year}}.webp" class="img-responsive center-block"/>
</picture>
<div class="overlay visible-hover bg-dark img-circle">
</div>
</a>
<h4 ng-bind="item.year"></h4>
<p>{{item.description}}<br/>
{{item.place}}</p>
</div>
</div>
</div>
</section>
<div class="container">
<section>
<div class="row text-center" id="traction">
<h3 class="text-uppercase" ng-bind="audience.title"></h3>
<div ng-repeat="item in audience.items" class="{{item.class}}" ng-bind="item.caption"></div>
<!--div class="col-md-4">Estudantes universitários</div>
<div class="col-md-4">Candidatos a graduação científica</div>
<div class="visible-md clearfix"></div>
<div class="col-md-4 col-md-offset-2">Cientistas de dados</div>
<div class="col-md-4">Programadores</div-->
<div class="col-md-6 col-md-offset-3">
<picture>
<source srcset="./assets/img/audience.webp" type="image/webp">
<source srcset="./assets/img/audience.png" type="image/png">
<img src="./assets/img/audience.webp" class="img-responsive center-block"/>
</picture>
</div>
</div>
</section>
</div>
<!-- TODO: Translations -->
<section>
<div class="jumbotron" id="analytics">
<div class="container">
<div class="row">
<div class="col-md-6 text-center">
<h3>{{geographicArea.title}}<br/>
<small ng-bind="geographicArea.title"></small>
</h3>
<picture>
<source srcset="./assets/img/geo.webp" type="image/webp">
<source srcset="./assets/img/geo.png" type="image/png">
<img src="./assets/img/geo.webp" class="img-responsive"/>
</picture>
<div class="row legend">
<div ng-repeat="item in geographicArea.legend" class="{{item.class}}">
<span class="{{item.legendClass}}"></span>
<br class="visible-xs"/>
<small>
<small>
<small ng-bind="item.caption"></small>
</small>
</small>
</div>
</div>
<p>
<small>
<small>
<small ng-bind="geographicArea.description"></small>
</small>
</small>
</p>
</div>
<div class="col-md-6 text-center">
<h3>{{scipy2018.title}}<br/>
<small ng-bind="scipy2018.subtitle"></small>
</h3>
<div class="row" id="fb">
<div class="col-xs-3 col-xs-offset-3 text-right">
<p class="visible-md"> </p>
<picture>
<source srcset="./assets/img/reach.webp" type="image/webp">
<source srcset="./assets/img/reach.png" type="image/png">
<img src="./assets/img/reach.webp" class="img-responsive"/>
</picture>
</div>
<div class="col-xs-3 col-md-3 text-center">
<p class="lead"><span class="lead"><span class="lead"><strong ng-bind="scipy2018.reach.cant"></strong></span></span>
</p>
<p>
<button class="btn btn-xs btn-social btn-primary"><span class="badge badge-square"><span
class="icon-6"></span></span> {{scipy2018.reach.caption}}
</button>
</p>
</div>
</div>
<div class="row">
<p><strong ng-bind="scipy2018.interested.cant"></strong> {{scipy2018.interested.caption}}</p>
</div>
<div class="row">
<div class="col-xs-3 col-xs-offset-2 text-center">
<div class="well well-xs"><strong ng-bind="scipy2018.tweets.cant"></strong></div>
<p>
<button class="btn btn-xs btn-social btn-info"><span class="badge badge-square"><span
class="icon-7"></span></span> {{scipy2018.tweets.caption}}
</button>
</p>
</div>
<div class="col-xs-3 col-xs-offset-2 text-center">
<div class="well well-xs"><strong ng-bind="scipy2018.visits.cant"></strong></div>
<p>
<button class="btn btn-xs btn-social btn-danger"><span class="badge badge-square"><span
class="icon-8"></span></span> {{scipy2018.visits.caption}}
</button>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section-nospace">
<div class="col-xs-12" id="signup">
<div class="container">
<div class="sbgu"></div>
<div class="sbgl"></div>
<div class="sbgr"></div>
<div class="row" id="contact-div">
<div class="col-md-2"></div>
<div class="col-md-8 text-center">
<div class="row">
<h3 ng-bind="inscription.title"></h3>
</div>
<div class="row">
<a href="register" id="btn-register" class="btn btn-warning btn-lg" ng-bind="inscription.register"></a>
</div>
</div>
<div class="col-md-2"></div>
</div>
</div>
</div>
</section>
<footer id="footer" class="footer text-center">
<div class="container">
<div class="btn-group btn-group-lg">
<a ng-repeat="item in footer.items" href="{{item.href}}" type="button" class="{{item.class}}">
<span class="{{item.icon}}"></span>
</a>
</div>
<p>Copyright {{footer.thisYear}} © <a href="http://scipyla.org" ng-bind="footer.scipyLa"></a></p>
</div>
<div class="">
<picture>
<source srcset="./assets/img/jardim_botanico_curitiba-576.webp 576w,
./assets/img/jardim_botanico_curitiba-768.webp 768w,
./assets/img/jardim_botanico_curitiba-992.webp 992w,
./assets/img/jardim_botanico_curitiba-1200.webp 1200w,
./assets/img/jardim_botanico_curitiba-1600.webp 1600w,
./assets/img/jardim_botanico_curitiba-2633.webp 2633w"
type="image/webp">
<source srcset="./assets/img/jardim_botanico_curitiba-576.png 576w,
./assets/img/jardim_botanico_curitiba-768.png 768w,
./assets/img/jardim_botanico_curitiba-992.png 992w,
./assets/img/jardim_botanico_curitiba-1200.png 1200w,
./assets/img/jardim_botanico_curitiba-1600.png 1600w,
./assets/img/jardim_botanico_curitiba-2633.png 2633w"
type="image/png">
<img class="img img-responsive"
srcset="./assets/img/jardim_botanico_curitiba-576.png 576w,
./assets/img/jardim_botanico_curitiba-768.png 768w,
./assets/img/jardim_botanico_curitiba-992.png 992w,
./assets/img/jardim_botanico_curitiba-1200.png 1200w,
./assets/img/jardim_botanico_curitiba-1600.png 1600w,
./assets/img/jardim_botanico_curitiba-2633.png 2633w"
src="./assets/img/jardim_botanico_curitiba-576.png"
alt="Jardim Botânico de Curitiba">
</picture>
</div>
</footer>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="./assets/vendors/ie10-viewport-bug-workaround.js"></script>
<script src="./assets/vendors/jquery.min.js"></script>
<script src="./assets/vendors/bootstrap.min.js"></script>
<script src="./assets/vendors/angular.min.js"></script>
<script src="../assets/vendors/angular-route.min.js"></script>
<script src="../assets/vendors/angular-sanitize.min.js"></script>
<script src="./assets/vendors/modernizr-custom.js"></script>
<script src="../assets/vendors/markdown-it.min.js"></script>
<script src="../assets/vendors/ng-markdownit.min.js"></script>
<script src="./assets/js/main.js"></script>
<script src="./assets/js/mainnav.js"></script>
<script language="javascript">
var slidebg = 'slide-1';
$('#home-carousel').on('slide.bs.carousel', function (e) {
var cls = $(e.relatedTarget).data('bg');
var elem = $('#jumbo-main');
elem.removeClass(slidebg);
elem.addClass(cls);
slidebg = cls;
})
</script>
<script src="./assets/js/contact-form.js"></script>
</body>
</html>