-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1540 lines (1533 loc) · 76.9 KB
/
Copy pathindex.html
File metadata and controls
executable file
·1540 lines (1533 loc) · 76.9 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="en">
<head>
<!-- Basic Page Needs -->
<meta charset="utf-8" />
<title>Clean World Conference 2018 | Let's Do It! Turkiye</title>
<!-- Metas -->
<meta name="description" content="This year's conference will be a boost for the Let's Do It! World Cleanup 2018 campaign. It will start a transformation in global waste management and how waste is perceived in society and this is the only place to be at that current time and your country can't miss the final decision making! " />
<meta name="keywords" content="" />
<meta name="author" content="" />
<meta property="og:url" content="http://cleanworldconference2016.com/" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Clean World Conference 2018 | Let's Do It! Turkey" />
<meta property="og:description" content="This year's conference will be a boost for the Let's Do It! World Cleanup 2018 campaign. It will start a transformation in global waste management and how waste is perceived in society and this is the only place to be at that current time and your country can't miss the final decision making! " />
<meta property="og:image" content="http://www.cleanworldconference2016.com/images/fb-opengraph.jpg" />
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-responsive.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/fonts.css" />
<link rel="stylesheet" href="css/fontello.css" />
<link rel="stylesheet" href="css/jquery.countdown.css" />
<link rel="stylesheet" href="css/jquery.validationengine.css" />
<link rel="stylesheet" href="css/flexslider.css">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicon and touch icons -->
<link rel="apple-touch-icon" href="images/touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/touch-icon-ipad-retina.png">
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body>
<header class="top-bar" id="topbar">
<div class="container">
<div class="row">
<div class="span12"><!-- logo link --><a class="logo pull-left" href="#intro" title="Eventify"><span></span></a>
<div class="navbar main-nav pull-right">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<nav>
<div class="nav-collapse collapse">
<ul id="mainnav" class="nav">
<li> <a href="#about">About</a> </li>
<li> <a href="#speakers">Speakers</a> </li>
<li><a href="#schedule">Schedule</a> </li>
<li><a href="#workshops">Workshops</a> </li>
<li><a href="#venue">Venue</a> </li>
<li><a href="#sponsors">Sponsors</a> </li>
<li><a href="#contact">Contact</a> </li>
</ul>
</div>
</nav>
</div>
<!-- end navbar -->
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</header>
<!-- end top-bar -->
<section id="intro">
<div class="container">
<div class="flexslider">
<ul class="slides">
<li>
<!-- slide 1 -->
<div class="row jumbotron">
<div class="span12 text-center">
<h1>Clean World </br> Conference "2018"</h1>
</div>
<!-- end span12 -->
</div>
<!-- end row -->
</li>
<!-- endslide 1 -->
<li>
<!-- slide 2 -->
<div class="row jumbotron">
<div class="span12 text-center">
<h1>This Winter</h1>
<h3 class="info"><span class="days">Passionate Civic Leaders </br> From Various Countries Gather</span></h3>
<a href="https://www.eventbrite.com/e/lets-do-it-clean-world-conference-2016-registration-18813737395" target="_blank" class="btn btn-large btn-primary">Register</a> </div>
<!-- end span12 -->
</div>
<!-- end row -->
</li>
<!-- end slide 2 -->
<li>
<!-- slide 3 -->
<div class="row jumbotron">
<div class="span12 text-center">
<h3>Annual Gathering Of Civic Leaders <br/> To Develop Innovative Solutions <br/> For The Planet Earth</h3>
<a href="https://www.eventbrite.com/e/lets-do-it-clean-world-conference-2016-registration-18813737395" target="_blank" class="btn btn-large btn-primary">Register</a> </div>
<!-- end span12 -->
</div>
<!-- end row -->
</li>
<!-- end slide 3 -->
</ul>
</div>
<!-- end flexslider -->
</div>
<!-- end container -->
</section>
<!-- top-bar, intro & modal end here -->
<section id="about">
<div class="container">
<div class="row">
<div class="span12">
<div class="module-header about-header">
<h4>About</h4>
</div>
<!-- end module-header -->
</div>
<div class="span12 hero-unit text-center">
<h1>Three Days of Inspiration!</h1>
<h3>
<time datetime="2014-09-23">28</time>
-
<time datetime="2014-09-25">31</time>
January 2016, Bursa, TR
<br />
</h3>
<div class="text-center">
<p>This year's conference will be a boost for the Let's Do It! World Cleanup 2018 campaign. It will start a transformation in global waste management and how waste is perceived in society. This is the only place to be that current time and your country can't miss the final decision making! We invite civic activists and opinion leaders from different countries around the world to come and brainstorm about the World Cleanup 2018.</p>
</div>
</div>
<!-- end hero-unit -->
<div class="span12">
<div class="divider-space"></div>
</div>
<div class="span4 text-center">
<div class="icon-wrap large color1"><i class="iconf-lightbulb"></i> </div>
<h3>Our Aim</h3>
<p>We will organise and carry out a global cleanup that takes place on one day in 2018, involving 380 million which is approximately 5% of the World's population. This conference will help participants get onto the same page and provide real inspiration. </p>
</div>
<div class="span4 text-center">
<div class="icon-wrap large color2"><i class="iconf-world"></i> </div>
<h3>The Vision</h3>
<p>Our vision is simple - a clean world.
<br />For one day, the world will be focused on one cause with the most amazing results - a clean, waste-free and healthy world, and a renewed belief that together we can solve global problems. It will be the largest scale initiative in the history of humankind!</p>
</div>
<div class="span4 text-center">
<div class="icon-wrap large color3"><i class="iconf-beaker"></i> </div>
<h3>Working Groups</h3>
<p>The pre-registration for the working groups will be announced to the selected participants of the conference after the main registration has ended. The working groups will be conducted in two parallel sessions and they will be performed by outstanding people.</p>
</div>
</div>
<!-- end row -->
</div>
<!--end container-->
</section>
<section id="register">
<div class="container">
<div class="row">
<div id="countdown"></div>
<div class="span12 white register-box text-center">
<h2 class="register-title">Places Are Available Today</h2>
<a href="https://www.eventbrite.com/e/lets-do-it-clean-world-conference-2016-registration-18813737395" target="_blank" class="btn btn-large btn-primary">Register Now</a> </div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</section>
<!-- top-bar, intro & modal end here -->
<section id="lastyear">
<div class="container">
<div class="row">
<div class="span12">
<div class="module-header about-header">
<h4>Previous Conferences</h4>
</div>
<!-- end module-header -->
</div>
<div class="span12 hero-unit text-center">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="//www.youtube.com/embed/nS_94sGYBzU?list=PLsVwtjMerCDcGWKzyr3Wyxq89SbqsNyL7" ></iframe>
</div>
</div>
<!-- end hero-unit -->
</div>
<!-- end row -->
</div>
<!--end container-->
</section>
<section id="speakers">
<div class="container">
<div class="row">
<div class="span12">
<div class="module-header speakers-header">
<h4>Speakers & Working Group Leaders</h4>
</div>
<!-- end module-header -->
</div>
<div class="span12 hero-unit text-center white">
<h2>Learn From These Great Folks</h2>
</div>
<!-- end hero-unit -->
<div class="span12">
<div class="divider-space"></div>
</div>
<div class="span12">
<div id="speakerscarousel" class="carouselslider speakers-carousel item-4">
<ul>
<li>
<!-- carousel item -->
<div class="item">
<div class="photo-wrap hover_colour"> <img src="images/photos/face11.jpg" alt=" "> </div>
<div class="text-wrap white">
<h3>Ismail Haznedar</h3>
<h5>Keynote Speaker</a></h5>
<hr class="divider-short center">
<p class="description">Senate Chairman of Junior Chamber International (JCI) Strategist, Certified Management Consultant (CMC) Angel Investor and Social Entrepreneur And Former President of JCI</p>
</div>
<div class="social"> <a href="#" target="_blank" title="Facebook" class="icon-wrap small facebook"> <i class="iconf-facebook"></i> </a> <a href="#" target="_blank" title="Twitter" class="icon-wrap small twitter"> <i class="iconf-twitter"></i> </a> <a href="#" target="_blank" title="Google+" class="icon-wrap small google"> <i class="iconf-gplus"></i> </a> <a href="#" target="_blank" title="Linkedin" class="icon-wrap small linkedin"> <i class="iconf-linkedin"></i> </a> </div>
</div>
<!-- end carousel item -->
</li>
<li>
<!-- carousel item -->
<div class="item">
<div class="photo-wrap hover_colour"> <img src="images/photos/face09.jpg" alt=" "> </div>
<div class="text-wrap white">
<h3>Ervin Shehaj</h3>
<h5>Working Group Leader</a></h5>
<hr class="divider-short center">
<p class="description">Team Leader of Let’s Do It! Albania. Has a business and ICT background. He succeeded to organise 5 national cleanups, 5 national “Green Tour” raising awareness campaigns, 5 national conferences and 1 Guinness world record.</p>
</div>
<div class="social"> <a href="#" target="_blank" title="Facebook" class="icon-wrap small facebook"> <i class="iconf-facebook"></i> </a> <a href="#" target="_blank" title="Twitter" class="icon-wrap small twitter"> <i class="iconf-twitter"></i> </a> <a href="#" target="_blank" title="Google+" class="icon-wrap small google"> <i class="iconf-gplus"></i> </a> <a href="#" target="_blank" title="Linkedin" class="icon-wrap small linkedin"> <i class="iconf-linkedin"></i> </a> </div>
</div>
<!-- end carousel item -->
</li>
<li>
<!-- carousel item -->
<div class="item">
<div class="photo-wrap hover_colour"> <img src="images/photos/face10.jpg" alt=" "> </div>
<div class="text-wrap white">
<h3>Jozef Vodička</h3>
<h5>Working Group Leader</a></h5>
<hr class="divider-short center">
<p class="description">He co-founded and leads several StartUPs such as Venzeo.com, TrashOut.ngo, Matura.sk and Stuzkova.EU. He is TEDx speaker, Slovak Forbes 30-under-30, member of AIESEC International supervisory group & TOP 5 Student Entrepreneurs in Slovakia. He gets things done.</p>
</div>
<div class="social"> <a href="https://www.facebook.com/jozef.vodicka?_rdr=p" target="_blank" title="Facebook" class="icon-wrap small facebook"> <i class="iconf-facebook"></i> </a> <a href="https://twitter.com/jozefvodicka" target="_blank" title="Twitter" class="icon-wrap small twitter"> <i class="iconf-twitter"></i> </a> <a href="https://plus.google.com/+JozefVodicka" target="_blank" title="Google+" class="icon-wrap small google"> <i class="iconf-gplus"></i> </a> <a href="https://www.linkedin.com/in/jozefvodicka" target="_blank" title="Linkedin" class="icon-wrap small linkedin"> <i class="iconf-linkedin"></i> </a> </div>
</div>
<!-- end carousel item -->
</li>
<li>
<!-- carousel item -->
<div class="item">
<div class="photo-wrap"> <img src="images/photos/face02.jpg" alt=" "> </div>
<div class="text-wrap white">
<h3>Kadi Kenk</h3>
<h5>Working Group Leader</h5>
<hr class="divider-short center">
<p class="description">Head of Partnerships at Let's Do It! World core team. She is passionate about people and initiatives that are driven for a better world. </p>
</div>
<div class="social"> <a href="#" target="_blank" title="Facebook" class="icon-wrap small facebook"> <i class="iconf-facebook"></i> </a> <a href="#" target="_blank" title="Twitter" class="icon-wrap small twitter"> <i class="iconf-twitter"></i> </a> <a href="#" target="_blank" title="Google+" class="icon-wrap small google"> <i class="iconf-gplus"></i> </a> <a href="#" target="_blank" title="Linkedin" class="icon-wrap small linkedin"> <i class="iconf-linkedin"></i> </a> </div>
</div>
<!-- end carousel item -->
</li>
<li>
<!-- carousel item -->
<div class="item">
<div class="photo-wrap"> <img src="images/photos/face03.jpg" alt=" "> </div>
<div class="text-wrap white">
<h3>Katrin Kurg</h3>
<h5>Working Group Leader</h5>
<hr class="divider-short center">
<p class="description">Head of Network Development at Let's Do It! World core team and her job is to offer knowledge and support to the countries network. Started in 2013 as a contact person for Egypt, Morocco and Cambodia.</p>
</div>
<div class="social"> <a href="#" target="_blank" title="Facebook" class="icon-wrap small facebook"> <i class="iconf-facebook"></i> </a> <a href="#" target="_blank" title="Twitter" class="icon-wrap small twitter"> <i class="iconf-twitter"></i> </a> <a href="#" target="_blank" title="Google+" class="icon-wrap small google"> <i class="iconf-gplus"></i> </a> <a href="#" target="_blank" title="Linkedin" class="icon-wrap small linkedin"> <i class="iconf-linkedin"></i> </a> </div>
</div>
<!-- end carousel item -->
</li>
<li>
<!-- carousel item -->
<div class="item">
<div class="photo-wrap"> <img src="images/photos/face04.jpg" alt=" "> </div>
<div class="text-wrap white">
<h3>Piret Jaaks</h3>
<h5>Working Group Leader</h5>
<hr class="divider-short center">
<p class="description">Piret Jaaks is the Head of Marketing in LDIW and has extensive time experience in the communication and marketing of various NGOs,
agencies and private companies</p>
</div>
<div class="social"> <a href="#" target="_blank" title="Facebook" class="icon-wrap small facebook"> <i class="iconf-facebook"></i> </a> <a href="#" target="_blank" title="Twitter" class="icon-wrap small twitter"> <i class="iconf-twitter"></i> </a> <a href="#" target="_blank" title="Google+" class="icon-wrap small google"> <i class="iconf-gplus"></i> </a> <a href="#" target="_blank" title="Linkedin" class="icon-wrap small linkedin"> <i class="iconf-linkedin"></i> </a> </div>
</div>
<!-- end carousel item -->
</li>
<li>
<!-- carousel item -->
<div class="item">
<div class="photo-wrap"> <img src="images/photos/face05.jpg" alt=" "> </div>
<div class="text-wrap white">
<h3>Meelika Hirmo</h3>
<h5>Working Group Leader</h5>
<hr class="divider-short center">
<p class="description">Meelika Hirmo is the Head of Public Relations of Let’s Do It! World and has about 10 years of experience in Public Relations.</p>
</div>
<div class="social"> <a href="#" target="_blank" title="Facebook" class="icon-wrap small facebook"> <i class="iconf-facebook"></i> </a> <a href="#" target="_blank" title="Twitter" class="icon-wrap small twitter"> <i class="iconf-twitter"></i> </a> <a href="#" target="_blank" title="Google+" class="icon-wrap small google"> <i class="iconf-gplus"></i> </a> <a href="#" target="_blank" title="Linkedin" class="icon-wrap small linkedin"> <i class="iconf-linkedin"></i> </a> </div>
</div>
<!-- end carousel item -->
</li>
<li>
<!-- carousel item -->
<div class="item">
<div class="photo-wrap"> <img src="images/photos/face06.jpg" alt=" "> </div>
<div class="text-wrap white">
<h3>Heidi Solba</h3>
<h5>Working Group Leader</h5>
<hr class="divider-short center">
<p class="description">Head of Human Resources development at Let's Do It! World core team. She has many years experience in HR and organisation development in NGOs, private and public organisations.</p>
</div>
<div class="social"> <a href="#" target="_blank" title="Facebook" class="icon-wrap small facebook"> <i class="iconf-facebook"></i> </a> <a href="#" target="_blank" title="Twitter" class="icon-wrap small twitter"> <i class="iconf-twitter"></i> </a> <a href="#" target="_blank" title="Google+" class="icon-wrap small google"> <i class="iconf-gplus"></i> </a> <a href="https://www.linkedin.com/in/heidi-solba-49643aa" target="_blank" title="Linkedin" class="icon-wrap small linkedin"> <i class="iconf-linkedin"></i> </a> </div>
</div>
<!-- end carousel item -->
</li>
<li>
<!-- carousel item -->
<div class="item">
<div class="photo-wrap"> <img src="images/photos/face07.jpg" alt=" "> </div>
<div class="text-wrap white">
<h3>Roberta Ažukaitė</h3>
<h5>Working Group Leader</h5>
<hr class="divider-short center">
<p class="description">Member of Let’s Do It Lithuania (Mes Darom) since 2008, head of the organization since 2014. Expert in organizational management field. Has a lot of experience in tactics and strategic organization levels.</p>
</div>
<div class="social"> <a href="#" target="_blank" title="Facebook" class="icon-wrap small facebook"> <i class="iconf-facebook"></i> </a> <a href="#" target="_blank" title="Twitter" class="icon-wrap small twitter"> <i class="iconf-twitter"></i> </a> <a href="#" target="_blank" title="Google+" class="icon-wrap small google"> <i class="iconf-gplus"></i> </a> <a href="https://www.linkedin.com/in/heidi-solba-49643aa" target="_blank" title="Linkedin" class="icon-wrap small linkedin"> <i class="iconf-linkedin"></i> </a> </div>
</div>
<!-- end carousel item -->
</li>
</ul>
</div>
<!-- end speakerscarousel -->
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</section>
<section id="schedule">
<div class="container">
<div class="row">
<div class="span12">
<div class="module-header schedule-header">
<h4>Schedule</h4>
</div>
<!-- end module-header -->
</div>
<!-- end span12 -->
<div class="span12">
<!-- Tabs -->
<ul id="schedule-tabs" class="nav nav-pills tab-fillspace ">
<li class="active"><a href="#dayone" data-toggle="tab">January 28<sup>th</sup></a> </li>
<li class=""><a href="#daytwo" data-toggle="tab">January 29<sup>th</sup></a> </li>
<li class=""><a href="#daythree" data-toggle="tab">January 30<sup>th</sup></a> </li>
<li class=""><a href="#dayfour" data-toggle="tab">January 31<sup>st</sup></a> </li>
</ul>
<!-- end tabs -->
</div>
<!-- end span12 -->
<div class="tab-content">
<div class="tab-pane wo-tab-pane fade in active" id="dayone">
<!-- DAY ONE -->
<div class="span4">
<h2>Arrival</h2>
<p>The first day will welcome the participants, and you can put your all belongings into your room. After a dinner there will be a socialising event, to get to know other participants. Do not forget to sleep well, and get yourself ready for the extraordinary speeches of the second day.</p>
<div class="schedule-download"><a href="https://www.dropbox.com/s/wmhqzj3eihgq7km/Program.pdf?dl=0" target="_blank" class="btn"><i class="iconf-acrobat"></i>
<p>Full Schedule</p>
</a> </div>
</div>
<!-- end span4 -->
<div class="span8">
<!-- TIMELINE -->
<section class="timeline toggle-shortcode toggles">
<!-- EVENT 1 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-ok"></i> </div>
</div>
<div class="time-box">
<time>09:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Registiration</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Registiration will start at 9am in the morning. You only requied to provide your personal Identity(ID) card. After you show your existence on the registiration desk, we will direct you to hotel reception to make your check-in. Registiration will be open all day long. If you come early, don't worry spend your time to hanging out with other participants. Please let us know by e-mail if you are planning to come later than 7pm.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 1 -->
<!-- EVENT 2 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-sun"></i> </div>
</div>
<div class="time-box">
<time>19:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Dinner</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Participant will have chance to enjoy with the Turkish cousine on open buffet stlye.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 2 -->
<!-- EVENT 3 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-wine"></i> </div>
</div>
<div class="time-box">
<time>20:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Socializing Event <span>Speed Networking</span></h3>
<h4>Metin Akın <span>Let's Do It! Türkiye</span></h4>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Participants are going to meet eachother by extraordinary methods in quick time. The method called as speed-networking which is very smilar of <a href="https://en.wikipedia.org/wiki/Speed_dating" target="_target">speed-dating</a>. You get into pairs and then answer the questions in very limited time. Thus participants will get them ready for the following days.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 3 -->
<!-- ADD AN EVENT HERE -->
</section>
</div>
<!-- end span8 -->
<!-- -->
</div>
<div class="tab-pane wo-tab-pane fade" id="daytwo">
<!-- DAY TWO -->
<div class="span4">
<h2>What's The Plan?</h2>
<div class="schedule-download"><a href="https://www.dropbox.com/s/wmhqzj3eihgq7km/Program.pdf?dl=0" target="_blank" class="btn"><i class="iconf-acrobat"></i>
<p>Full Schedule</p>
</a> </div>
</div>
<!-- end span4 -->
<div class="span8">
<!-- TIMELINE -->
<section class="timeline toggle-shortcode toggles">
<!-- EVENT 1 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-sun"></i> </div>
</div>
<div class="time-box">
<time>08:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Breakfast</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Participant will have chance to enjoy with the Turkish style breakfast.
</br>It will end at Nine A.M. sharp.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 1 -->
<!-- EVENT 2 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>08:45</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Program Announcement</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Organisation team will uptate you in any changes if occurs or will notify you about the starting of the next session.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 2 -->
<!-- EVENT 3 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>09:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Conference Opening Ceremony </h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Official conference openning will be held in this session.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 3 -->
<!-- EVENT 4 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>09:30</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Greetings From Honorary Guests</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p> We will have special guests who will come across the far distances. Conference team will going to announce those names to you.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 4 -->
<!-- EVENT 5 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>10:10</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Keynote Speaker</h3>
<h4>Ismail Haznedar <span>2015 JCI President </span></h4>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Nominated by JCI Turkey, Ismail Haznedar was elected 2015 JCI (Junior Chamber International) President at the 2014 JCI World Congress in Leipzig, Germany. Born September 18, 1976, in Tetovo, Republic of Macedonia (FYROM), Ismail Haznedar holds a bachelor’s degree in Management and Master’s Degree in Marketing.
<br /><br />
Ismail Haznedar is strategist and entrepreneur, with a successful professional experience in scaling up businesses and new initiatives via strategic growth modeling. He works as managing director of a Strategic Consulting Company and supports new start-ups with a network as a Mentor and Angel Investor. Ismail Haznedar serves as Honorary President of the Strategic Planning Society (SPS) in Turkey as a Fellow Member of SPS and is a Board Member of Turkish Business Angels Association (TBAA).
<br /><br />
He resides in Istanbul, Turkey, with his wife Cigdem, and their daughter Nehir and son Kaan. He speaks English and Turkish.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 5 -->
<!-- EVENT 6 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>11:10</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Keynote Speaker </h3>
<h4>Nara Petrovič <span>Let’s Do It! Slovenia</span></h4>
</div>
<div class="toggle-item-body" style="display: none;">
<p></p>
</div>
</div>
</div>
</article>
<!-- end EVENT 6 -->
<!-- EVENT 7 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>11:50</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Rainer's Best Speech Ever! </h3>
<h4>Rainer Nõlvak <span>Let's Do It! World </span></h4>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Rainer Nõlvak is an Estonian entrepreneur and nature protector who is Chairman of the board of Estonian Nature Fund.Rainer Nõlvak has advocated for the Estonian energy industry to move away from oil shale and move towards renewable energy systems. He has published the "Green Energy" program.
<br/><br/>He was among the organizers of Let's Do It 2008, a civic action with 50 000 volunteers participating in cleaning up the countriside of Estonia in one day. Because of this he received the 2008 Estonian Volunteer of the Year national award. The movement has initiated the global Let's Do It! World action.
<br/><br/>He founded the following companies: Microlink Baltics, Curonia Research, Celecure.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 7 -->
<!-- EVENT 8 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-videocam"></i> </div>
</div>
<div class="time-box">
<time>12:30</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Networking</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Just before we forward to the lunch, find a close friend whom you can offer to eat together. Enjoy</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 8 -->
<!-- EVENT 9 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-sun"></i> </div>
</div>
<div class="time-box">
<time>13:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Lunch</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Participant will have chance to enjoy with the Turkish cousine on open buffet stlye.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 9 -->
<!-- EVENT 10 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-sun"></i> </div>
</div>
<div class="time-box">
<time>14:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>After Lunch Voo-Doo</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Get more fully charged! Super focused and ready to move to next big thing!</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 10 -->
<!-- EVENT 11 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-videocam"></i> </div>
</div>
<div class="time-box">
<time>14:30</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Introduction of World Cleanup 2018 Plan</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>That's the next big thing which will happen in 2018. All around the World. </p>
</div>
</div>
</div>
</article>
<!-- end EVENT 11 -->
<!-- EVENT 12 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-videocam"></i> </div>
</div>
<div class="time-box">
<time>15:15</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>World Cleanup 2018 Discussions</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Participant will discuss about 5Ws and all other related question single day cleanup of the World in 2018.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 12 -->
<!-- EVENT 13 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-videocam"></i> </div>
</div>
<div class="time-box">
<time>16:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Refreshment Break</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Do screching and make your brains think in diffuse mode</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 13 -->
<!-- EVENT 14 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-videocam"></i> </div>
</div>
<div class="time-box">
<time>16:15</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>World Cleanup 2018 Discussions <span>Continue </span></h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Participant will continue to discuss about 5Ws and all other related question single day cleanup of the World in 2018.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 14 -->
<!-- EVENT 15 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-videocam"></i> </div>
</div>
<div class="time-box">
<time>17:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Wrap Up and Decisions</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Get things done.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 15 -->
<!-- EVENT 12 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-sun"></i> </div>
</div>
<div class="time-box">
<time>19:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Dinner & Turkish Cultural Evening</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Participant will have chance to enjoy with the Turkish cousine and the cultural attactions.
<br/><br/> Multicultural activities will continue after the dinner.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 12 -->
<!-- ADD AN EVENT HERE -->
</section>
</div>
<!-- end span8 -->
<!-- -->
</div>
<div class="tab-pane wo-tab-pane fade" id="daythree">
<!-- DAY TWO -->
<div class="span4">
<h2>How to make the work the plan?</h2>
<div class="schedule-download"><a href="https://www.dropbox.com/s/wmhqzj3eihgq7km/Program.pdf?dl=0" target="_blank" class="btn"><i class="iconf-acrobat"></i>
<p>Full Schedule</p>
</a> </div>
</div>
<!-- end span4 -->
<div class="span8">
<!-- TIMELINE -->
<section class="timeline toggle-shortcode toggles">
<!-- EVENT 1 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-sun"></i> </div>
</div>
<div class="time-box">
<time>08:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Breakfast</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Participant will have chance to enjoy with the Turkish style breakfast.
</br>It will end at Nine A.M. sharp.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 1 -->
<!-- EVENT 2 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>08:45</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Introduction of the Day</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Organisation team will uptate you in any changes if occurs or will notify you about the starting of the next session.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 2 -->
<!-- EVENT (extra) -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>09:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>ACTIVITIES OF TURKISH HEALTHY CITIES ASSOCIATION</h3>
<h4>Murat Ar <span>Turkish Healthy Cities Network</span></h4>
</div>
<div class="toggle-item-body" style="display: none;">
<p></p>
</div>
</div>
</div>
</article>
<!-- end EVENT (extra) -->
<!-- EVENT 2 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>09:20</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Industrial Symbiosis </h3>
<h4>BEBKA</h4>
</div>
<div class="toggle-item-body" style="display: none;">
<p>BEBKA Development Agency is currently running a program about Industrial Symbiosis. By gathering data from the cities Eskişehir, Bursa and Bilecik with the aim to efficiently use the resources and ensure the regional sustainable development. <br /> <br />
Sectoral structure of the region, especially in Bursa Eskişehir and Bilecik; was evaluated on the basis of the number of firms in the region and industrial zones, and also the waste, which is intensely created in the region, was also evaluated especially for these three cities, based on waste quantities regarding waste type and waste quantities regarding industrial zones. <br />
This session will explain details about the on-going analysis results of the region.
</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 2 -->
<!-- EVENT 3 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>09:35</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Introduction of Working Groups</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Focused groups will work on the getting better on the topics. Thus, organisation team will announce what purposes they get together</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 3 -->
<!-- EVENT 4 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>10:20</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Working Groups <span>Parallel Sessions</span> </h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>You register one of the following working groups and attend:
<br/><br/> 1. ABC – how to clean up your country in one day?
<br/> 2. Finances and engaging international partners
<br/> 3. What makes a Let’s Do It! Leader?
<br/> 4. Think Globally, Act Locally!
<br/> 5. How to make waste mapping suitable for every country?</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 4 -->
<!-- EVENT 7 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-sun"></i> </div>
</div>
<div class="time-box">
<time>12:30</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Lunch</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>Participant will have chance to enjoy with the Turkish cousine on open buffet stlye.</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 7 -->
<!-- EVENT 5 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-videocam"></i> </div>
</div>
<div class="time-box">
<time>13:30</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Switching the Working Groups</h3>
</div>
<div class="toggle-item-body" style="display: none;">
<p>This would be the change gain more expertise on the field you would like to learn</p>
</div>
</div>
</div>
</article>
<!-- end EVENT 5 -->
<!-- EVENT 9 -->
<article class="event">
<div class="timeline-icon">
<div class="timeline-icon-container"><i class="iconf-microphone"></i> </div>
</div>
<div class="time-box">
<time>14:00</time>
</div>
<div class="timeline-content">
<div class="event-content">
<div class="toggle-item-title event-title" data-count="1">
<h3>Working Groups <span>Parallel Sessions</span> </h3>
</div>
<div class="toggle-item-body" style="display: none;">