-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1054 lines (991 loc) · 54.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="it">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Raduno Open Data Sicilia 2022</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
<!-- Slicknav -->
<link rel="stylesheet" type="text/css" href="assets/css/slicknav.css">
<!-- Icon -->
<link rel="stylesheet" href="assets/icons/LineIcons.css">
<!-- Nivo Lightbox -->
<link rel="stylesheet" type="text/css" href="assets/css/nivo-lightbox.css">
<!-- Animate -->
<link rel="stylesheet" type="text/css" href="assets/css/animate.css">
<!-- Main Style -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<!-- Responsive Style -->
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<!-- Css personalizzato Open Data Sicilia -->
<link rel="stylesheet" type="text/css" href="ods.css">
<!-- opengraph -->
<meta property="og:title" content="#ODS2022 | dati e potere, 30 settembe e 1 ottobre 2022" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://ods2022.opendatasicilia.it/" />
<meta property="og:description"
content="Partecipa a #ODS2022! OpenDataSicilia 2022 / Catania, 30 settembre/1 ottobre 2022: OpenData, Competenze Digitali, Trasparenza, Partecipazione" />
<meta property="og:image" content="https://ods2022.opendatasicilia.it/assets/img/og.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="#ODS2022 | OpenDataSicilia 2022: dati e potere - 30 settembre/1 ottobre 2022">
<meta name="twitter:description"
content="Partecipa a #ODS2022! @OpenDataSicilia 2022 : OpenData, Competenze Digitali, Trasparenza, Partecipazione">
<meta name="twitter:image" content="https://ods2022.opendatasicilia.it/assets/img/og.png">
<meta name="twitter:site" content="@opendatasicilia" />
<meta name="twitter:url" content="https://ods2022.opendatasicilia.it/">
<!-- fine opengraph -->
<style>
.table-container {
width: 100%;
overflow-x: auto
}
</style>
<!-- Evento -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "#ODS2022 | Dati e Potere",
"description": "Il raduno Open Data Sicilia del 2022 ha come obiettivo quello di analizzare la relazione che intercorre tra i dati e il potere",
"image": "https://ods2022.opendatasicilia.it/assets/img/ods2021-social_fb.jpg",
"startDate": "2022-09-30T09:00",
"endDate": "2022-10-01T17:30",
"performer": {
"@type": "PerformingGroup",
"name": "OpenDataSicilia"
},
"location": {
"@type": "Place",
"name": "Catania",
"address": {
"@type": "",
"streetAddress": "",
"addressLocality": "",
"postalCode": "",
"addressCountry": ""
}
},
"offers": {
"@type": "Offer",
"name": "#ODS2022 | Open Data Sicilia - Catania, 30 settembre e 1 ottobre 2022",
"price": "0",
"priceCurrency": "EUR",
"validFrom": "2021-04-17",
"url": "https://www.eventbrite.it/e/biglietti-ods2022-dati-e-potere-il-raduno-2022-di-open-data-sicilia-385755183137",
"availability": "https://schema.org/InStock"
}
}
</script>
<!-- fine Evento -->
</head>
<body>
<!-- Header Area wrapper Starts -->
<header id="header-wrap">
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg fixed-top scrolling-navbar">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main-navbar"
aria-controls="main-navbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
<span class="icon-menu"></span>
<span class="icon-menu"></span>
<span class="icon-menu"></span>
</button>
<a href="https://opendatasicilia.it/" target="_blank" class="navbar-brand"><img src="assets/img/logo.png" alt="Open Data Sicilia"></a>
</div>
<div class="collapse navbar-collapse" id="main-navbar">
<ul class="navbar-nav mr-auto w-100 justify-content-end">
<li class="nav-item active">
<a class="nav-link" href="#header-wrap">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">Cos'è</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#who">Chi siamo</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#schedules">Cosa faremo</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#sponsors">Partner</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#committee">Comitato</a>
</li>
<!-- Iscrizione eventbrite -->
<!--
<li class="nav-item">
<a class="nav-link" href="https://www.eventbrite.it/e/biglietti-ods2022-dati-e-potere-il-raduno-2022-di-open-data-sicilia-385755183137" target="_blank">
<strong>Iscriviti</strong> <i class="lni-calendar"></i>
</a>
</li>
-->
<!-- translation -->
<!--
<li class="nav-item">
<a class="nav-link" href="./"><strong>ITA</strong></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./index-en.html"><strong>ENG</strong></a>
</li>
-->
</ul>
</div>
</div>
<!-- Mobile Menu Start -->
<ul class="mobile-menu">
<li>
<a class="page-scrool" href="#header-wrap">Home</a>
</li>
<li>
<a class="page-scrool" href="#about">Cos'è</a>
</li>
<li>
<a class="page-scrool" href="#who">Chi siamo</a>
</li>
<li>
<a class="page-scroll" href="#schedules">Cosa faremo</a>
</li>
<li>
<a class="page-scroll" href="#committee">Comitato</a>
</li>
<li>
<a class="page-scroll"
href="https://www.eventbrite.it/e/biglietti-ods2022-dati-e-potere-il-raduno-2022-di-open-data-sicilia-385755183137">Iscriviti</a>
</li>
</ul>
<!-- Mobile Menu End -->
</nav>
<!-- Navbar End -->
<!-- Main Carousel Section Start -->
<div id="main-slide" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="assets/img/slider/ods2022.png"alt="">
<!--div class="carousel-caption d-md-block">
<p class="fadeInUp wow" data-wow-delay=".6s">Partecipa al raduno di Open Data Sicilia</p>
<h1 class="wow fadeInDown heading" data-wow-delay=".4s">#Ods2022 <br /> 30 settembre e 1 ottobre 2022 <br /> <small>il valore dei dati</small></h1>
<a target="_blank" href="" class="fadeInLeft wow btn btn-common btn-lg" data-wow-delay=".6s">Iscriviti</a>
<a target="_blank" href="" class="fadeInRight wow btn btn-border btn-lg" data-wow-delay=".6s">Invia una proposta</a>
</div-->
</div>
</div>
</div>
<!--Main Carousel Section End-->
</header>
<!-- Header Area wrapper End -->
<!-- call to action Start -->
<section id="partecipa" class="section-padding">
<div class="container">
<div class="row text-center">
<div class="col-md-12 col-lg-12 col-xs-12 wow fadeInLeft">
<div class="heading-count">
<h2 class="wow fadeInDown" data-wow-delay="0.2s">Partecipa al raduno di Open Data Sicilia!</h2>
<p>
Ogni anno <a href="https://opendatasicilia.it" target="_blank">Open Data Sicilia</a> organizza
un raduno in una città siciliana per confrontarsi su temi relativi a dati aperti, trasparenza e partecipazione.
Quest'anno saremo a Catania e parleremo di <b>Dati e Potere</b>!
<br /><br />
</p>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<!--a target="_blank" href="https://www.eventbrite.it/e/biglietti-ods2022-dati-e-potere-il-raduno-2022-di-open-data-sicilia-385755183137" class="fadeInLeft wow btn btn-common btn-lg" data-wow-delay=".6s">Iscriviti</a-->
</div>
</div>
</div>
</section>
<!-- call to action End -->
<!-- Countdown timer Start -->
<!--
<section class="countdown-timer section-padding">
<div class="container">
<div class="row text-center">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="heading-count">
<h2 class="wow fadeInDown" data-wow-delay="0.2s">L'EVENTO INIZIERÀ TRA</h2>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="row time-countdown justify-content-center wow fadeInUp" data-wow-delay="0.2s">
<div id="clock" class="time-count">
</div>
</div>
<a href="https://www.eventbrite.it/e/biglietti-ods2022-dati-e-potere-il-raduno-2022-di-open-data-sicilia-385755183137" class="btn btn-common wow fadeInUp" data-wow-delay="0.3s">Iscriviti</a>
</div>
</div>
</div>
</section>
-->
<!-- Countdown timer End -->
<!-- Counter Area Start-->
<section class="counter-section section-padding">
<div class="container">
<div class="row">
<!-- Counter Item -->
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.3s">
<div class="icon">
<?xml version="1.0" encoding="utf-8"?>
<svg fill="#ffffff" width="52" height="52" version="1.1" id="lni_lni-map-marker" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<g>
<path d="M32,1.3c-13.9,0-25.3,11-25.3,24.4c0,10.7,15.3,28.4,21.9,35.6c0.9,1,2.1,1.5,3.4,1.5c1.3,0,2.5-0.5,3.4-1.5
c6.6-7.1,21.9-24.9,21.9-35.6C57.3,12.2,45.9,1.3,32,1.3z M32.8,58.9c-0.5,0.5-1.2,0.5-1.6,0c-4.9-5.3-21-23.5-21-33.2
C10.2,14.1,20,4.8,32,4.8s21.8,9.4,21.8,20.9C53.8,35.4,37.7,53.5,32.8,58.9z"/>
<path d="M32,15.7c-5.9,0-10.8,4.8-10.8,10.8c0,5.9,4.8,10.8,10.8,10.8s10.8-4.8,10.8-10.8C42.8,20.5,37.9,15.7,32,15.7z M32,33.7
c-4,0-7.3-3.3-7.3-7.3c0-4,3.3-7.3,7.3-7.3c4,0,7.3,3.3,7.3,7.3C39.3,30.4,36,33.7,32,33.7z"/>
</g>
</svg>
</div>
<p>CATANIA</p>
</div>
</div>
<!-- Counter Item -->
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.6s">
<div class="icon"><i class="lni-timer"></i></div>
<p>30 settembre 2022<br>1 ottobre 2022</p>
</div>
</div>
<!-- Counter Item -->
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.9s">
<div class="icon"><i class="lni-users"></i></div>
<p><a href="https://www.eventbrite.it/e/biglietti-ods2022-dati-e-potere-il-raduno-2022-di-open-data-sicilia-385755183137" target="_blank" style="color: #fff !important">ISCRIZIONE CONSIGLIATA</a></p>
<span>per restare aggiornata/o</span>
</div>
</div>
<!-- Counter Item -->
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="1.2s">
<div class="icon"><i class="lni-emoji-smile"></i></div>
<p>evento gratuito</p>
<span>partecipazione libera</span>
</div>
</div>
</div>
</div>
</section>
<!-- Counter Area End-->
<!-- Event Slides Section Start -->
<!--Video yt-->
<section id="who" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Registrazione YouTube</h1>
</div>
</div>
<div class="col-md-12 col-lg-12 col-xs-12 wow fadeInLeft" data-wow-delay="0.3s">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/aUnRy4Rin8Q" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</section>
<!--Video yt end-->
<!--About Section Start-->
<section id="about" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Cos'è</h1>
</div>
</div>
<div class="col-md-12 col-lg-12 col-xs-12 wow fadeInLeft" data-wow-delay="0.3s">
<p class="intro-desc">
Ogni anno <a href="https://opendatasicilia.it" target="_blank">Open Data Sicilia</a> organizza
un raduno in una città siciliana per confrontarsi su temi relativi a dati aperti, trasparenza e partecipazione.
Quest'anno saremo a Catania e parleremo di <b>Dati e Potere</b>!
<br /><br />
</p>
</div>
<!--div class="col-md-6 col-lg-6 col-xs-12 wow fadeInLeft" data-wow-delay="0.3s">
<div class="video">
<img class="img-fluid" src="assets/img/about/about.jpg" alt="">
</div>
</div-->
<div class="col-md-12 col-lg-12 col-xs-12 wow fadeInLeft" data-wow-delay="0.3s">
<h4 class="intro-title">Che ci piaccia o meno, i dati sono ovunque.</h3>
<p class="intro-desc">
Raccogliamo e utilizziamo i dati ogni volta che guardiamo il nostro orologio fitness per vedere quanti passi abbiamo
fatto. Ma non solo, i dati sono uno strumento importante per le pubbliche amministrazioni per prendere <b>decisioni</b> che
hanno a che fare con la nostra vita di tutti i giorni. Ancora, sempre più aziende, al giorno d’oggi, usano dati di ogni
natura per <b>scegliere</b> i candidati e le candidate per le loro posizioni di lavoro e i loro profili.
<br><br>
È sempre più evidente che disporre di dati (soprattutto di qualità) costituisce una forma di detenzione del <b>potere</b>.
Ecco perché il raduno Open Data Sicilia del 2022 ha come obiettivo quello di analizzare la <b>relazione che intercorre
tra i dati e il potere</b>.
</p>
<p>
In che misura i dati pubblici veicolano il potere decisionale dell'attività politico-amministrativa?
In che modo i dati aperti possono migliorare il rispetto del principio della <b>trasparenza</b> nell'intera filiera decisionale durante l'esercizio dell'attività politico-amministrativa?
Quanto le policy che regolamentano i processi di erogazione di denaro pubblico promuovono la pubblicazione dei dati come <b>bene comune</b>?
Quanto è vera l’equazione dati = potere? Quanto questa equazione può aiutare a mitigare i rischi di un uso improprio del denaro pubblico?
<br>
Queste sono alcune domande da cui partire per sviluppare una riflessione durante il nostro raduno.
</p>
<p class="intro-desc"><br />
Se hai un'idea sui dati aperti, se vuoi imparare a visualizzarli, trasformarli o analizzarli,
se vuoi scoprire un progetto a cui dare un contributo, <a href="#partecipa">partecipa!</a>. Il raduno ODS2022 è organizzato in <b>due giornate</b>.
La prima giornata sarà dedicata a <b>interventi seminariali</b> mentre la seconda sarà rivolta alla <b>formazione</b>.
La partecipazione è un valore fondamentale della nostra comunità; indipendentemente dalle tue competenze o
dai tuoi interessi, se ti <a href="https://www.eventbrite.com/e/biglietti-ods2022-dati-e-potere-il-raduno-2022-di-open-data-sicilia-385755183137" target="_blank">iscrivi</a>, se invii una <a href="https://docs.google.com/forms/d/e/1FAIpQLScU4PH-gUxP2Qb4VRGF7UNr_KHY5RuafMRjU_QDywSxY0QjAQ/viewform" target="_blank">proposta di intervento per la conferenza</a> o
per il <a href="https://docs.google.com/forms/d/e/1FAIpQLSe47IwFKGzeReHWL5hewQGs5hNNREYv9rsDiM7GVG9YNn_X_w/viewform" target="_blank">workshop</a>, ci aiuterai a crescere e "stare bene
sul pezzo".
</p>
</div>
</div>
</div>
</section>
<!--About Section End -->
<!-- map start -->
<section id="google-map-area">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Dove</h1>
<p>
<b>Biblioteca Centro Culturale "Concordia"</b><br>
Via Plaia, 43, Centro storico, Catania, Sicilia, 95121<br>
Apri indirizzo in mobile: <strong><a href="geo:37.4965753302269,15.0857953867316">Seleziona Applicazione preferita</a></strong><br>
Apri indirizzo con: <strong><a target="_blank" href="https://maps.google.com/?q=37.4965753302269,15.0857953867316">Google Maps</a></strong><br>
Apri indirizzo con: <strong><a target="_blank" href="https://www.openstreetmap.org/?mlat=37.4965753302269&mlon=15.0857953867316&zoom=18#map=18/37.4965753302269/15.0857953867316">OpenStreetMap</a></strong><br>
</p>
</div>
<!-- indirizzo unict object style="border:0; height: 450px; width: 100%;" data="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d491.19124580028733!2d15.074693845128104!3d37.52596633118303!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x3dfed1f875963de4!2sUniversit%C3%A0%20degli%20Studi%20di%20Catania%20-%20Dipartimento%20di%20Ingegneria%20Elettrica%2C%20Elettronica%20e%20Informatica!5e0!3m2!1sit!2sit!4v1657886615301!5m2!1sit!2sit"></object-->
<object style="border:0; height: 550px; width: 100%;" data="https://umap.openstreetmap.fr/it/map/raduno-ods-2022_804671"></object>
</div>
</div>
</div>
</section>
<!-- map end -->
<!--Chi Siamo start-->
<section id="who" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Chi siamo</h1>
</div>
</div>
<div class="col-md-12 col-lg-12 col-xs-12 wow fadeInLeft" data-wow-delay="0.3s">
<p class="intro-desc">
<b><a href="https://opendatasicilia.it" target="_blank">Open Data Sicilia</a></b> è un'iniziativa
civica che si propone di diffondere la cultura dell’open government e le prassi dell’open data.
<br>
La community, fondata nel 2013, è alimentata dal contributo di attiviste/i e appassionate/i.
Ad oggi sono circa un centinaio le persone (non soltanto siciliane) che ne fanno parte;
tra esse sono presenti docenti universitari, data scientist, ingegneri, giornaliste/i, studentesse e studenti,
sviluppatrici e sviluppatori, dipendenti pubblici, civic-hacker. Uno degli obiettivi della comunità è quello di
raccogliere e pubblicare contenuti e testimonianze sul tema degli <b>Open Data</b>, sul loro <b>riuso</b> e sulla loro <b>qualità</b>.
<br><br>
Open Data Sicilia organizza ogni anno un raduno in una città siciliana presso la quale convergono la maggior parte
delle attiviste e degli attivisti (anche dall’estero) mossi dalla volontà di confrontarsi su temi relativi a
<b>dati aperti</b>, <b>trasparenza</b> e <b>partecipazione</b>. Negli anni, la community ha assunto un ruolo
fondamentale nel panorama italiano, tanto da diventare un autorevole punto di riferimento sia in ambito
nazionale che europeo.
<br><br>
All’ultima edizione (online a causa della pandemia) del raduno di Open Data Sicilia del 2021
<a href="https://ods2021.opendatasicilia.it" target="_blank">(#ODS2021 - Il valore dei dati)</a>
hanno partecipato ben <b>27 speaker</b> per un totale di <b>8h e 50 min</b> consecutivi di
live streaming. La registrazione dell’evento è stata visualizzata da una platea di circa tremila persone.
<br><br>
</p>
<!--
<div class="col-md-12 col-lg-12 col-xs-12 wow fadeInLeft" data-wow-delay="0.3s">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/QOd1SKzxRqA" allowfullscreen></iframe>
</div>
</div>
-->
</div>
</div>
</div>
</section>
<!--Chi Siamo end-->
<!--div class="row">
<div class="col-12">
<br />
<div class="section-title-header text-center">
<a href="https://forms.gle/PxZeyLFNBqppo9BG8" target="_blank">
<button type="button" class="btn btn-common btn-lg" >Invia la tua proposta</button>
</a>
</div>
</div>
</div-->
</div>
</div>
</section>
<!-- Event Slides Section End -->
<!-- Schedule Section Catania Start -->
<section id="schedules" class="schedule section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Programma</h1>
<p class="wow fadeInDown" data-wow-delay="0.2s">
<span class="text-danger">
Gli eventi del programma potrebbero subire cambiamenti
</span>
</p>
</div>
</div>
</div>
<div class="schedule-area row wow fadeInDown" data-wow-delay="0.3s">
<div class="schedule-tab-title col-md-3 col-lg-3 col-xs-12">
<div class="table-responsive">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="friday-tab" data-toggle="tab" href="#friday" role="tab" aria-controls="friday" aria-expanded="true">
<div class="item-text">
<h4>venerdì</h4>
<h5>30 settembre 2022</h5>
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="saturday-tab" data-toggle="tab" href="#saturday" role="tab" aria-controls="saturday">
<div class="item-text">
<h4>sabato</h4>
<h5>1 ottobre 2022</h5>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="schedule-tab-content col-md-9 col-lg-9 col-xs-12 clearfix">
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="friday" role="tabpanel" aria-labelledby="friday-tab">
<div id="accordion">
<div class="card">
<div id="headingOne">
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
<div class="images-box">
<img class="img-fluid" src="assets/img/logo.png" alt="">
</div>
<span class="time">Prima giornata - Conferenza</span>
<h4>VENERDÌ 30 SETTEMBRE</h4>
<h5 class="name"></h5>
</div>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body" style="padding: 5px 5px 5px 5px">
<div class="table-container">
<table class="table">
<tbody>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
Inizio Raduno
</td>
</tr>
<tr>
<th scope="row">08:30 - 9:00</th>
<td class="font-italic"></td>
<td class="text-left" colspan="2"><b>Welcome ODS</b></td>
</tr>
<tr>
<td class="text-center" colspan="4" style="font-size: 20px" ><b>Keynote Speaker</b><br>
<i>
Neglected data or neglected persons? Il ruolo della Fondazione Fightthestroke nel
restituire il potere dei dati fruibili ai pazienti e alle loro famiglie</i><br>
<b>Francesca Fedeli</b></i>
</br>
</td>
</tr>
<tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
Monitoraggio
</td>
</tr>
<tr>
<th scope="row">9:45 - 10:05</th>
<td>Angelo Gstulina, Dennis Angemi</td>
<td>indecis.it: uno strumento per un voto consapevole (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=1989s">video</a> | <a href="https://docs.google.com/presentation/d/1UNT9GEygxklXiJeg4xSwR04FuWkguIEVT3ttL6giuCM/edit?usp=drivesdk">slide</a>)</td>
<td class="font-italic">indecis.it e Open Data Sicilia</td>
</tr>
<tr>
<th scope="row">10:05 - 10:25</th>
<td>Vincenzo Savarino</td>
<td>Gestione di dati non open : un approccio user-centrico per i dati personali (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=2997s">video</a>)
</td>
<td class="font-italic">Engineering Ingegneria Informatica S.p.A</td>
</tr>
<tr>
<th scope="row">10:25 - 10:45</th>
<td>Maurizio Napolitano</td>
<td>I dati AGCOM del pluralismo politico sociale in televisione (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=4156s">video</a> | <a href="https://bit.ly/agcomapipolitica">slide</a>)</td>
<td class="font-italic">Fondazione Bruno Kessler</td>
</tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
Ambiente e territorio
</td>
</tr>
<tr>
<th scope="row">10:45 - 11:05</th>
<td>Marco Montanari, Lucia Marsicano</td>
<td>Mappare il passato con dati aperti: una riflessione sul passato dei dati (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=5420s">video</a>)</td>
<td class="font-italic">Open History Map</td>
</tr>
<tr>
<th scope="row">11:05 - 11:25</th>
<td>Gabriele Arcangelo Scalici</td>
<td>MareSì: navigare in dati aperti (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=6692s">video</a>)</td>
<td class="font-italic">Koucee</td>
</tr>
<tr>
<th scope="row">11:25 - 11:45</th>
<td>Rosario La Spina</td>
<td>Open Data al comune di Messina (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=8049s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/presentazione%20raduno%20opendata%202022%20rosario%20la%20spina.pdf">slide</a>)</td>
<td class="font-italic">Comune di Messina</td>
</tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
Partecipazione
</td>
</tr>
<tr>
<th scope="row">11:45 - 12:05</th>
<td>Medea Ferrigno</td>
<td>La mappatura di comunità come strumento di empowerment territoriale (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=9427s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/Presidio_SIMETO_opendata.pdf">slide</a>)</td>
<td class="font-italic">Presidio Partecipativo del Patto di Fiume Simeto</td>
</tr>
<tr>
<th scope="row">12:05 - 12:25</th>
<td>Alessandra De Renzis, Davide Bruno</td>
<td>Open Toscana - Open Data PNRR (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=10632s">video</a>)</td>
<td class="font-italic">Regione Toscana</td>
</tr>
<tr>
<th scope="row">12:25 - 12:45</th>
<td>Giuseppe D'Avella, Francesco Saija</td>
<td>Il progetto Spendiamoli Insieme - Dati sulla democrazia partecipata in Sicilia (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=11688s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/spendiamoli-insieme.pdf">slide</a>)</td>
<td class="font-italic">Parliament Watch Italia</td>
</tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
Data Literacy
</td>
</tr>
<tr>
<th scope="row">12:45 - 13:05</th>
<td>Benedetta Tonnini</td>
<td>Insegnare la data literacy nelle scuole e università europee (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=12729s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/20220930%20-%20Dataninja%20-%20ODS%202022.pdf">slide</a>)</td>
<td class="font-italic">Dataninja</td>
</tr>
<tr>
<th scope="row">13:05 - 13:30</th>
<td>Annalaura Cannavò</td>
<td>Dataviz: raccontare la complessità (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=13630s">video</a>)</td>
<td class="font-italic">H-FARM Digital Marketing</td>
</tr>
<tr class="text-white text-center" style="background-color: #292D3E">
<td colspan="4" class="text-center">
PAUSA PRANZO
</td>
</tr>
<tr>
<th scope="row">14:20 - 14:30</th>
<td>Openantani (<a target="_blank" href="https://www.youtube.com/watch?v=5Hj7Qu9dR2w">video</a>)</td>
<td></td>
<td class="font-italic"></td>
</tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
<b>DATUR, IL DATO È VITA </b> <br>
Gli open data generativi di Salvatore Iaconesi e Oriana Persico da <br> <b>La Cura al Nuovo Abitare</b>
</td>
</tr>
<tr>
<th scope="row" rowspan="2" style="vertical-align: middle">14:30 - 15:00</th>
<td></td>
<td>Ricordo di Salvatore Iaconesi <br>
<a href="https://ods2022.opendatasicilia.it/datur" target="_blank">Epistola di Oriana Persico</a>
</td>
<td class="font-italic"></td>
</tr>
<tr>
<td>Paola Bommarito</td>
<td>Udatinos.eu (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=18520s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/udatinos.pdf">slide</a>)</td>
<td class="font-italic"></td>
</tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
SANITÀ
</td>
</tr>
<tr>
<th scope="row">15:00 - 15:20</th>
<td>Sonia Montegiove, Chiara Lalli</td>
<td>Mai Dati: perché aprire i dati sulla 194 (e non solo)? (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=21378s">video</a>)</td>
<td class="font-italic"></td>
</tr>
<tr>
<th scope="row">15:20 - 15:40</th>
<td>Maghweb, campagna www noneunveleno it</td>
<td>Diritti, contraccezione d'emergenza, salute sessuale e riproduttiva (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=22557s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/non%20e%CC%80%20un%20veleno.pdf">slide</a>)</td>
<td class="font-italic">Maghweb</td>
</tr>
<tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
CORPORATE
</td>
</tr>
<th scope="row">15:40 - 16:00</th>
<td>Luca Corsato</td>
<td>Fix heritage persistently: Ricevi NFT per il tuo sostegno al patrimonio culturale e sociale (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=23472s">video</a>)</td>
<td class="font-italic">Kocai Ltd</td>
</tr>
<tr>
<th scope="row">16:00 - 16:20</th>
<td>Stefano Borzì</td>
<td>UNICT DATA - Manipolare ed affinare dati pubblici (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=24675s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/Manipolare%20ed%20affinare%20dati%20pubblici.pdf">slide</a>)</td>
<td class="font-italic">UNICT Community Devs</td>
</tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
OPEN DATA E PA
</td>
</tr>
<tr>
<th scope="row">16:20 - 16:40</th>
<td>Mario Restuccia</td>
<td>L'Open Data in Francia e data.gouv.fr (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=25705s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/2022-09-30-open-data-sicilia-mario-restuccia.pdf">slide</a>)</td>
<td class="font-italic">Eta Lab - France</td>
</tr>
<tr>
<th scope="row">16:40 - 17:00</th>
<td>Morena Ragone</td>
<td>Le licenze per i dati aperti dopo le nuove Linee Guida AgID (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=26848s">video</a>)</td>
<td class="font-italic">Regione Puglia - Ufficio RTD</td>
</tr>
<tr>
<th scope="row">17:00 - 17:20</th>
<td>Giada Maria Politi</td>
<td>ASOC Pozzillo in Progress (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=28049s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/asoc-politi.pdf">slide</a>)</td>
<td class="font-italic">I.T. S. Citelli Regalbuto</td>
</tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
COVID
</td>
</tr>
<tr>
<th scope="row">17:20 - 17:40</th>
<td>Aldo Maria Bracco</td>
<td>Dati covid e controlli di qualità (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=28721s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/Dati%20covid%20e%20controlli%20di%20qualit%C3%A0.pdf">slide</a>)</td>
<td class="font-italic"></td>
</tr>
<tr>
<th scope="row">17:40 - 18:00</th>
<td>Francesco Branda</td>
<td>How the Pandemic Emphasized the Importance of Real-World Data (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=30214s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/ODS2022%20-%20Branda.pdf">slide</a>)</td>
<td class="font-italic">Università della Calabria</td>
</tr>
<tr>
<th scope="row">18:00 - 18:20</th>
<td>Luigi Tomaselli</td>
<td>Anomalie dei dati pandemici della sola Regione Sicilia (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=31432s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/anomalie%20dei%20dati%20pandemici%20della%20sola%20Regione%20Sicilia.ppsx">slide</a>)</td>
<td class="font-italic"></td>
</tr>
<tr class="text-white" style="background-color: #eb6067">
<td colspan="4" class="text-center">
</td>
</tr>
<tr>
<th scope="row">18:20 - 18.40</th>
<td>Luca Naso</td>
<td>Progetto GAIA: un laboratorio condiviso per le comunità emergenti (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=32802s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/ODS22_GAIA_handout.pdf">slide</a>)</td>
<td class="font-italic">EHT</td>
</tr>
<tr>
<th scope="row">18:40 - 18.45</th>
<td>Giovanni Pirrotta</td>
<td>OpenDataZen: il Codice dell'Amministrazione Digitale come non l'avete mai...sentito (<a target="_blank" href="https://www.youtube.com/watch?v=aUnRy4Rin8Q&t=34440s">video</a> | <a href="https://github.com/opendatasicilia/ods2022/raw/main/presentazioni/opendatazen-pirrotta.pdf">slide</a> | <a target="_blank" href="https://www.pirrotta.info/opendatazen/opendatazen.mp3">opendatazen</a>) </td>
<td class="font-italic">Open Data Sicilia</td>
</tr>
<tr>
<th scope="row">18:45</th>
<td></td>
<td>Bilancio sulle attività fatte e prospettive future</td>
<td class="font-italic">Open Data Sicilia</td>
</tr>
<tr class="text-white text-center" style="background-color: #292D3E">
<td colspan="4" class="text-center">
CHIUSURA
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="saturday" role="tabpanel" aria-labelledby="saturday-tab">
<div id="accordion2">
<div class="card">
<div id="headingOne1">
<div class="collapsed card-header" data-toggle="collapse" data-target="#collapseOne1" aria-expanded="false" aria-controls="collapseOne1">
<div class="images-box">
<img class="img-fluid" src="assets/img/logo.png" alt="">
</div>
<span class="time">Seconda giornata - Workshop</span>
<h4>SABATO 1 OTTOBRE</h4>
<h5 class="name"></h5>
</div>
</div>
<div id="collapseOne1" class="collapse show" aria-labelledby="headingOne1" data-parent="#accordion2">
<!--div class="card-body" style="padding: 5px 5px 5px 5px"-->
<div class="table-container">
<table class="table">
<tbody>
<tr class="text-white text-center" style="background-color: #eb6067">
<td colspan="4" class="text-center">
TRACK 1
</td>
</tr>
<tr>
<th scope="row">9:30 - 13:30</th>
<td>Rossana Coro <br>(Surreal Dataviz)</td>
<td>Un dataviz vi seppellirà!</td>
<td class="font-italic"></td>
</tr>
<tr>
<th scope="row">14:30 - 18:30</th>
<td>Federica Giaquinta, Valeria Cantarella</td>
<td>OpenGov: Co-monitoriamo insieme le istituzioni</td>
<td class="font-italic">Generazione Ypsilon</td>
</tr>
<tr class="text-white text-center" style="background-color: #eb6067">
<td colspan="4" class="text-center">
TRACK 2
</td>
</tr>
<tr>
<th scope="row">9:30 - 11:30</th>
<td>Medea Ferrigno</td>
<td>M(')appare la comunità Opendata Sicilia</td>
<td class="font-italic">Presidio Partecipativo del Patto di Fiume Simeto</td>
</tr>
<tr>
<th scope="row">11:30 - 13:00</th>
<td>Annalaura Cannavò</td>
<td>Storie di dati: il dietro le quinte di una data visualization</td>
<td class="font-italic">H-FARM Digital Marketing</td>
</tr>
<tr>
<th scope="row">13:00 - 13:30</th>
<td></td>
<td></td>
<td class="font-italic"></td>
</tr>
<tr>
<th scope="row">14:30 - 16:00</th>
<td>Luigi Tomaselli </td>
<td>COVID-19: Pandemometri Previsionali e Quantificatori </td>
<td class="font-italic"></td>
</tr>
<tr>
<th scope="row">16:00 - 16:30</th>
<td>Andrea Mignone</td>
<td>Observable</td>
<td class="font-italic"></td>
</tr>
<tr>
<th scope="row">16:30 - 18:30</th>
<td>Andrea Borruso</td>
<td>Miller: uno strumento per interrogare, trasformare, riformattare file di testo strutturato.</td>
<td class="font-italic">Associazione onData</td>
</tr>
</tbody>
</table>
</div>
<!--/div-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Partner Section start -->
<section id="sponsors" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Partner</h1>
<p class="wow fadeInDown" data-wow-delay="0.2s">È stato possibile organizzare il raduno ODS2022 grazie a</p>
</div>
</div>
</div>
<div class="row mb-30 text-center wow fadeInDown" data-wow-delay="0.3s">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="spnsors-logo">
<a href="http://www.palestraperlamente.org/" target="_blank"><img class="img-fluid" src="assets/img/partner/ppm.png" alt=""></a>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="spnsors-logo">
<a href="https://ondata.it" target="_blank"><img class="img-fluid" src="assets/img/partner/ondata.png" alt=""></a>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="spnsors-logo">
<a href="https://www.presidiosimeto.it/" target="_blank"><img class="img-fluid" src="assets/img/partner/presidio-simeto.png" alt=""></a>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="spnsors-logo">
<a href="http://parliamentwatch.it/" target="_blank"><img class="img-fluid" src="assets/img/partner/pwi.png" alt=""></a>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="spnsors-logo">
<a href="https://www.spazio47.it/" target="_blank"><img class="img-fluid" src="assets/img/partner/spazio47.png" alt=""></a>
</div>
</div>
<!--div class="col-12 text-center">
<a href="" class="btn btn-common">Diventa partner</a>
</div-->
</div>
</div>
</section>
<!-- Partner Section end -->
<!-- Comittee Section Start -->
<section id="committee" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Comitato Organizzativo</h1>
<ul>
<li>Dennis Angemi</li>
<li>Andrea Borruso</li>
<li>Nino Galante</li>
<li>Angelo Gulina</li>
<li>Andrea Nelson Mauro</li>
<li>Paola Masuzzo</li>
<li>Giovanni Pirrotta</li>
<li>Ciro Spataro</li>
<li>Davide Taibi</li>
<li>Alessio Vasta</li>
</ul>
<!--p class="wow fadeInDown" data-wow-delay="0.2s">Il nostro evento punta a divulgare cultura e competenze sugli Open Data. Come potresti aiutarci? Hai qualche idea?</p -->
</div>
</div>
</div>
</div>
</section>
<!-- Comittee Section end -->
<!-- Footer Section Start -->
<footer class="footer-area section-padding">
<div class="container">
<div class="row">
<div class="col-md-6 col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-delay="0.2s">
<h3>
<a href="http://www.opendatasicilia.it" target="_blank"><img src="assets/img/logo.png" alt=""></a>
</h3>
</div>
<div class="col-md-6 col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-delay="0.6s">
<h3>Chi Siamo</h3>
<p>
Open Data Sicilia è un'iniziativa civica che si propone di diffondere la cultura dell’open
government e le prassi dell’open data.
</p>
</div>
<div class="col-md-6 col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-delay="0.4s">
<h3>Link veloci</h3>
<ul>
<li><a href="#who">Chi siamo</a></li>
<li><a href="#about">Cos'è</a></li>
<li><a href="#schedules">Cosa faremo</a></li>
<li><a href="#partecipa">Partecipa</a></li>
<li><a href="#committee">Comitato</a></li>
</ul>
</div>
<div class="col-md-6 col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-delay="0.8s">
<h3>Segui Open Data Sicilia su:</h3>
<ul class="footer-social">
<li><a href="https://www.facebook.com/groups/opendatasicilia/" title="Facebook groups" target="_blank" class="facebook"><i class="lni-facebook-filled"></i></a></li>
<li><a class="twitter" href="https://twitter.com/opendatasicilia" target="_blank" title="Twitter"><i class="lni-twitter-filled"></i></a></li>
<li><a class="github" href="https://github.com/opendatasicilia/ODS2022" target="_blank" title="Repository Github"><i class="lni-github-original"></i></a></li>
<li><a class="google-plus" href="http://opendatasicilia.it/" target="_blank" title="Sito web opendatasicilia.it"><i class="lni-link"></i></a></li>
<br /><br />
<li><a class="twitter" href="https://t.me/opendatasicilia" target="_blank" title="Gruppo Telegram"><i class="lni-telegram"></i></a></li>
<li><a class="google-plus" href="mailto:info@opendatasicilia.it" target="_blank" title="Email info@opendatasicilia.it"><i class="lni-envelope"></i></a></li>
<li><a class="google-plus" href="https://groups.google.com/forum/#!forum/opendatasicilia" target="_blank" title="Google groups"><i class="lni-wechat"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer Section End -->