forked from stevenbeeckman/stevenbeeckman.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1071 lines (844 loc) · 37.4 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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="StartupBus empowers those who want to disrupt the status quo">
<meta name="author" content="StartupBus">
<!-- Some pictures are CC licensed -->
<!-- https://creativecommons.org/licenses/by/2.0/ -->
<!-- https://creativecommons.org/licenses/by-nc/2.0/ -->
<!-- https://creativecommons.org/licenses/by-sa/2.0/ -->
<!-- Facebook Open Graph tags -->
<meta property="og:url" content="http://asiapac.startupbus.com/index.html" />
<meta property="og:type" content="website" />
<meta property="og:title" content="StartupBus Asiapac 2016" />
<meta property="og:description" content="" />
<meta property="og:image" content="http://asiapac.startupbus.com/assets/images/winner_trustful.jpg" />
<!-- Twitter Open Graph tags -->
<meta property="twitter:url" content="http://asiapac.startupbus.com/index.html" />
<meta property="twitter:card" content="photo" />
<meta property="twitter:title" content="StartupBus Asia Pac" />
<meta property="twitter:description" content="The third competition for StartupBus Asia Pacific " />
<meta property="twitter:image" content="http://asiapac.startupbus.com/assets/images/winner_trustful.jpg" />
<title>StartupBus Asia Pacific</title>
<!-- CSS -->
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/simpletextrotator.css" rel="stylesheet">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/et-line-font.css" rel="stylesheet">
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<link href="assets/css/flexslider.css" rel="stylesheet">
<link href="assets/css/owl.carousel.css" rel="stylesheet">
<link href="assets/css/animate.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/bus_tracker.css" rel="stylesheet">
<!-- favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff ">
<meta name="msapplication-TileImage" content="/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff ">
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1451149045157782');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1451149045157782&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5&appId=677071135767398";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Preloader -->
<div class="page-loader">
<div class="loader">Loading...</div>
</div>
<!-- Navigation start -->
<nav class="navbar navbar-custom navbar-transparent navbar-fixed-top one-page" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#custom-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">StartupBus</a>
</div>
<div class="collapse navbar-collapse" id="custom-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#totop">Home</a></li>
<li><a href="#about" class="section-scroll">About</a></li>
<li><a href="#buses" class="section-scroll">Bus</a></li>
<li><a href="#team" class="section-scroll">Team</a></li>
<li><a href="#partners">Partners</a></li>
<li><a href="#contact" class="section-scroll">Contact</a></li>
<li><a href="https://facebook.com/TheStartupBus" target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/TheStartupBus" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com/startupbus_europe" target="_blank"><i class="fa fa-instagram"></i></a></li>
<li><a href="https://www.youtube.com/user/StartupBus" target="_blank"><i class="fa fa-youtube"></i></a></li>
</ul>
</div>
</div>
</nav>
<!-- Navigation end -->
<!-- Home start -->
<section id="home" class="home-section home-parallax home-fade home-full-height bg-dark-30" data-background="assets/images/winner_trustful.jpg">
<div class="hs-caption" id="home-hero-overlay">
<div class="caption-content">
<div class="hs-title-size-1 font-alt mb-30">
<!-- Winner: TBA
<br/>
<a href="http://www.trustfulvoting.com" target="_blank" class="btn btn-border-w btn-round">Website</a>
</div> -->
<div class="hs-title-size-4 font-alt mb-40">
StartupBus Asia Pacific 2017 <br/>
20 - 23 April
</div>
<div id="bus-logo">
<img src="assets/images/LOGOpNG_V2.png"/>
</div>
</div>
</div>
</section >
<!-- <section id="home" class="home-section home-parallax home-fade home-full-height">
<div class="hero-slider bg-dark-60 bg-dark">
<div id="map-canvas">
</div>
<div id="bus-stats">
<h4>Bus stats:</h4>
</div>
<div id="bus-logo">
<img src="assets/images/startupbus_transparant_logo.png"/>
</div>
</div>
</section > -->
<!-- Home end -->
<!-- Wrapper start -->
<div class="main">
<!-- Leaderboard start -->
<!-- <section id="leaderboard">
<div class="row" style="background-color: #292929;">
<div class="col-md-10 col-md-offset-1">
<iframe src="http://leaderboard.startupbus.com" style="width:100%; padding: 0; margin: 0; height: 2165px;">
</iframe>
</div>
</div>
</section> -->
<!-- Leaderboard end -->
<!-- About start -->
<section id="about" class="module">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<h2 class="module-title font-alt">A once-in-a-lifetime road trip</h2>
<div class="module-subtitle font-serif large-text">
"Entrepreneurship can’t be taught but we think it can be learned."
</div>
</div>
</div><!-- .row -->
<!-- <div class="row">
<div class="col-sm-2 col-sm-offset-5">
<div class="large-text align-center">
<a href="#mission" class="section-scroll"><i class="fa fa-angle-down"></i></a>
</div>
</div>
</div> -->
</div><!-- .container -->
</section>
<!-- About end -->
<!-- Divider -->
<hr class="divider-w">
<!-- Divider -->
<!-- Mission start -->
<section id="mission" class="module bg-dark">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<h2 class="module-title font-alt">Your mission</h2>
<div class="module-subtitle font-serif">
Conceive, build and launch a new startup in 72 hours with a team of strangers while crossing the continent on a bus driving 80 km/h.
</div>
<div class="module-subtitle font-sans-serif">
After those 72 hours you will have to demo your product in front of a panel of judges in Sydney.
</div>
</div>
</div><!-- .row -->
</div><!-- .container -->
</section>
<!-- Buses start -->
<section id="buses" class="module pb-0">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<h2 class="module-title font-alt" style="margin-bottom: 0;">Build your tech ecosystem</h2>
<h3 class="module-subtitle font-alt" style="margin-top: 15px; margin-bottom: 20px;" >There will be only one bus</h3>
</div>
</div><!-- .row -->
<div class="row text-center">
<!--
<a class="typeform-share btn" style="text-transform: uppercase;letter-spacing: 2px;font-size: 11px;padding: 18px 37px;
background: aquamarine;border: 1px solid #ccc; border-radius: 4px; mazrgin: 10px;" href="https://startupbus.typeform.com/to/zDXelJ" data-mode="2" target="_blank"><b>Unlock your city!</b></a>
<script>(function(){var qs,js,q,s,d=document,gi=d.getElementById,ce=d.createElement,gt=d.getElementsByTagName,id='typef_orm',b='https://s3-eu-west-1.amazonaws.com/share.typeform.com/';if(!gi.call(d,id)){js=ce.call(d,'script');js.id=id;js.src=b+'share.js';q=gt.call(d,'script')[0];q.parentNode.insertBefore(js,q)}id=id+'_';if(!gi.call(d,id)){qs=ce.call(d,'link');qs.rel='stylesheet';qs.id=id;qs.href=b+'share-button.css';s=gt.call(d,'head')[0];s.appendChild(qs,s)}})()</script>
<br />
<br />
(See the <a href="https://startupbus.typeform.com/report/zDXelJ/xlK0">vote tally here</a>. Prioritisation will be cities with the most demand as shown via applications.) -->
<a class="typeform-share btn" style="text-transform: uppercase;letter-spacing: 2px;font-size: 11px;padding: 18px 37px; background: aquamarine;border: 1px solid #ccc; border-radius: 4px; mazrgin: 10px;" href="https://startupbus.typeform.com/to/KB5Zhi" data-mode="2" target="_blank"><b>Apply now!</b></a>
<script>(function(){var qs,js,q,s,d=document,gi=d.getElementById,ce=d.createElement,gt=d.getElementsByTagName,id='typef_orm_share',b='https://s3-eu-west-1.amazonaws.com/share.typeform.com/';if(!gi.call(d,id)){js=ce.call(d,'script');js.id=id;js.src=b+'share.js';q=gt.call(d,'script')[0];q.parentNode.insertBefore(js,q)}id=id+'_';if(!gi.call(d,id)){qs=ce.call(d,'link');qs.rel='stylesheet';qs.id=id;qs.href=b+'share-button.css';s=gt.call(d,'head')[0];s.appendChild(qs,s)}})()</script>
</div>
<!--
<div class="row">
<div class="text-center">
<a href="bus/france/">
<img src="assets/images/france.jpg">
</a>
<img src="assets/images/france.jpg" alt="Logo of StartupBus France 2016"> -->
</div>
</div>
</div><!-- .container -->
<!-- Portfolio list start -->
<!--<ul id="works-grid" class="works-grid works-grid-gut works-grid-3 works-hover-w">-->
<!-- <ul id="works-grid" class="works-grid works-grid-gut works-grid-4 works-hover-w"> -->
<!-- <li class="work-item illustration photography" style="position: relative!important; float:none!important; margin:0 auto!important; text-align: center!important;">
<a href="bus/france/">
<div class="work-image">
<img src="assets/images/france.jpg" alt="Logo of StartupBus France 2016">
</div>
<div class="work-caption font-alt">
<div class="work-descr">
More...
</div>
</div>
</a>
</li> -->
<!-- Portfolio item start -->
<!-- Portfolio item start -->
<!-- <li class="work-item illustration photography">
<a href="bus/france/">
<div class="work-image">
<img src="assets/images/france.jpg" alt="Logo of StartupBus France 2016">
</div>
<div class="work-caption font-alt">
<h3 class="btn btn-b btn-round">Learn more</h3> -->
<!-- <div class="work-descr">
More...
</div> -->
<!-- </div>
</a>
</li> -->
<!-- Portfolio item end -->
<!-- </ul> -->
<!-- Portfolio list end -->
</section>
<!-- buses end -->
</div>
</section>
<section class="module-small">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<h2 class="module-title font-alt">What our alumni say</h2>
</div>
</div><!-- .row -->
<div class="row multi-columns-row">
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<h3 class="features-title font-alt">Bram Van Oost, 2014 alumnus</h3>
I miss the intense times, crazy people and idea flood. Hope you're all doing something weird, and to see you soon.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<h3 class="features-title font-alt">Christoph Richter, 2011 alumnus</h3>
StartupBus was for me a really awesome experience as I learned a lot about myself and what can be done in actually no time. Definitely one of the experiences that pushed my entrepreneural thinking a lot forward.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<h3 class="features-title font-alt">Wendy Geeraert, 2015 alumnus</h3>
Thanks to StartupBus I became a true entrepreneur and I'm now ready to pursue my own idea.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<h3 class="features-title font-alt">Libby Tucker, 2014 alumnus</h3>
I am terrified of pitching, especially with lack of sleep and my nerves at their peak. I pushed myself out of my comfort zone, and stepped up under pressure. This was personally rewarding.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<h3 class="features-title font-alt">Arnaud Mesureur, 2014 alumnus</h3>
My network grew drastically, not only quantity wise but also in quality. I also consider being selected for the finals as a great achievement. And I now feel part of an awesome community. More than ever, I feel like we can change the world.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<h3 class="features-title font-alt">Richard Loat, 2014 alumnus</h3>
It's hard to put into words, but having grown up in Silicon Valley, StartupBus Europe 2014 gave people the excitement needed to emulate what it may be like to work there.
</div>
</div>
<!-- Features end -->
</div>
</div>
</section>
<!-- Program start -->
<section id="program" class="module bg-dark">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<h2 class="module-title font-alt">Program</h2>
<div role="tabpanel">
<!-- Nav tabs start-->
<ul class="nav nav-tabs font-alt" role="tablist">
<li class="active">
<a href="#sep2" data-toggle="tab">Day 1</a>
</li>
<li>
<a href="#sep3" data-toggle="tab">Day 2</a>
</li>
<li>
<a href="#sep4" data-toggle="tab">Day 3</a>
</li>
<li>
<a href="#sep5" data-toggle="tab">Day 4</a>
</li>
<!--
<li>
<a href="#sep6" data-toggle="tab">TBA</a>
</li>
<li>
<a href="#sep7" data-toggle="tab">TBA</a>
</li>
-->
</ul>
<!-- Nav tabs end -->
<!-- Tab panes start-->
<div class="tab-content">
<!-- Tab start -->
<div class="tab-pane active" id="sep2">
<p>
9h AEDT: all buses depart!
</p>
<p>
After departure, each buspreneur will get the mic to pitch the ideas he wants to work on during the bootcamp. Once everyone has pitched their ideas, teams are formed around the most popular ideas on each bus.
</p>
<p>
Teams start to think about the problem they want to solve and about how they want to solve it.
</p>
<p>
Once a team settles on a name, they're entered into the StartupBus Game. This game allows people that aren't on a StartupBus to participate in the bootcamp and buy and sell shares of the startups born on the buses.
</p>
<p>
Teams have to be fast because the bus is crossing the continent and stops in cities where the teams have to pitch their idea.
</p>
</div>
<!-- Tab end -->
<!-- Tab start -->
<div class="tab-pane" id="sep3">
<p>
Day 2 of the StartupBus bootcamp.
</p>
<p>
We'll see startups having trouble defining their vision and mission, while other startups are moving fast and are doing customer validation during the stops.
</p>
<p>
Wireframes are being drawn by the UX designers on board and the developers start working on their prototypes.
</p>
</div>
<!-- Tab end -->
<!-- Tab start -->
<div class="tab-pane" id="sep4">
<p>
The last 24 hours of the bootcamp...
</p>
<p>
Sleep deprivation is kicking in. Some hustlers are getting tired of their own pitch while others keep on iterating to find something that sticks. They desperately want to achieve what happened on the 2015 New York bus: finding a seed investor and having to go into stealth mode.
</p>
<p>
Developers and designers are working non-stop on getting their prototypes to work on their mobile phones or in the cloud.
</p>
</div>
<!-- Tab end -->
<!-- Tab start -->
<div class="tab-pane" id="sep5">
<p>
At 9h AEDT it's the end of the 72 hours: demo time for all startups born on the participating buses in Sydney.
</p>
<p>
In the morning, every startup the opportunity to demo their product and show what traction they have achieved. What startups actually closed some sales? They have 3 minutes to pitch.
</p>
<!--<p>
<img src="assets/images/corda_inc.png" alt="Corda INCubator in Hasselt, Belgium" />
</p> -->
<p>
The jury selects the 5 best demos and buspreneurs can network. Break time while we wait for the final pitch. All buspreneurs help the 5 best startups with improving their demos.
</p>
<p> In the eveninig, the 5 best startups selected will pitch again in front of judges and investor.
</p>
<p>
Who will be the winner of StartupBus Asia Pacific 2017?
</p>
<p>
Time to say goodbye to your new BFF's! Even though it's a goodbye, the buspreneurs now become part of a global network of thousands of StartupBus alumni that have gone on to change the world.
</p>
</div>
<!-- Tab end -->
<!-- Tab start -->
<!--
<div class="tab-pane" id="sep6">
<p>
Day of the final. The 5 best startups selected will pitch again in front of judges and investor.
</p>
<p>
Who will be the winner of StartupBus Asia Pacific 2016?
</p>
<p>
When the night comes it's time to see the burning man. Party time!
</p>
</div> -->
<!-- Tab end -->
<!-- Tab start -->
<!--
<div class="tab-pane" id="sep7">
<p>
Time to say goodbye to your new BFF's! Even though it's a goodbye, the buspreneurs now become part of a global network of thousands of StartupBus alumni that have gone on to change the world.
</p>
</div> -->
<!-- Tab end -->
</div>
<!-- Tab panes end-->
</div>
</div>
</div>
</div>
</section>
<!-- Program -->
<!-- Divider -->
<hr class="divider-w">
<!-- Divider -->
<!-- What is StartupBus? start -->
<section id="competitions" class="module">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<h2 class="module-title font-alt">What is StartupBus?</h2>
</div>
</div><!-- .row -->
<div class="row multi-columns-row">
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<div class="features-icon">
<span class="icon-global"></span>
</div>
<h3 class="features-title font-alt">Entrepreneurial ecosystem</h3>
StartupBus is building a global entrepreneurial ecosystem through unique experiences and inspirational connections, where each year and all over the world, change-makers get the chance to prove their entrepreneurship skills.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<div class="features-icon">
<span class="icon-ribbon"></span>
</div>
<h3 class="features-title font-alt">Initiation rite</h3>
Not just an event, the annual competition also acts as a feeder and initiation rite for those joining the StartupBus community.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<div class="features-icon">
<span class="icon-megaphone"></span>
</div>
<h3 class="features-title font-alt">Bootcamp</h3>
StartupBus produces the most intense startup bootcamp in the world, where top talent learns as ‘buspreneurs’ how to build the next generation of technology companies over the course of a 72 hour bus ride.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<div class="features-icon">
<span class="icon-profile-female"></span><span class="icon-profile-male"></span>
</div>
<h3 class="features-title font-alt">Teamwork</h3>
Each bus has about 25 carefully selected strangers of software developers, designers and hustlers! They have to work together <emph>like a boss</emph>.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<div class="features-icon">
<span class="icon-mobile"></span>
</div>
<h3 class="features-title font-alt">Coding & development</h3>
We find it important to be able to demo your prototype by the end of the 72 hour road trip.
</div>
</div>
<!-- Features end -->
<!-- Features start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="features-item">
<div class="features-icon">
<span class="icon-presentation"></span>
</div>
<h3 class="features-title font-alt">Build it & then sell it</h3>
StartupBus is not only about building a great product, it's also about being able to sell it to your customers. Ready to pitch?
</div>
</div>
<!-- Features end -->
</div><!-- .row -->
</div><!-- .container -->
</section>
<!-- Features end -->
<!-- Team start -->
<section id="team" class="module">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<h2 class="module-title font-alt">Team</h2>
<div class="module-subtitle font-serif">
StartupBus Asia Pacific 2017 is a team effort. Each bus has a Conductor and a team of Producers. All Conductors are directed by our Directors.
</div>
</div>
</div><!-- .row -->
<div class="row">
<!-- Team item star -->
<div class="col-sm-4 col-md-4 mb-sm-20 wow fadeInUp">
<div class="team-item">
<div class="team-image">
<img src="assets/images/profile_francesca.png" alt="">
<div class="team-detail">
<h5 class="font-alt">Ready Set Go!</h5>
<p class="font-serif"></p>
<div class="team-social">
<a href="https://twitter.com/frafanni"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
<div class="team-descr font-alt">
<div class="team-name">Francesca Fanini</div>
<div class="team-role">Conductor</div>
</div>
</div>
</div>
<!-- Team item end -->
<!-- Team item star -->
<div class="col-sm-4 col-md-4 mb-sm-20 wow fadeInUp">
<div class="team-item">
<div class="team-image">
<img src="assets/images/optibus_prime.jpg" alt="">
<div class="team-detail">
<h5 class="font-alt">Calling all buses!</h5>
<p class="font-serif"></p>
<div class="team-social">
<a href="https://twitter.com/TheStartupBus"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
<div class="team-descr font-alt">
<div class="team-name">Optibus Prime</div>
<div class="team-role">Slackbot</div>
</div>
</div>
</div>
<!-- Team item end -->
<!-- Team item star -->
<div class="col-sm-4 col-md-4 mb-sm-20 wow fadeInUp">
<div class="team-item">
<div class="team-image">
<img src="assets/images/profile_elias.png" alt="">
<div class="team-detail">
<h5 class="font-alt">Fuck it, let's ship it</h5>
<p class="font-serif"></p>
<div class="team-social">
<a href="https://twitter.com/EliasBiz"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
<div class="team-descr font-alt">
<div class="team-name">Elias Bizannes</div>
<div class="team-role">Founder</div>
</div>
</div>
</div>
<!-- Team item end -->
</div><!-- .row -->
</div>
</section>
<!-- Team end -->
<!-- Count to start -->
<section class="module bg-dark-60" data-background="assets/images/section-3.jpg">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<h2 class="module-title font-alt">Global scoreboard</h2>
</div>
</div><!-- .row -->
<div class="row multi-columns-row">
<!-- CountTo start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="count-item mb-sm-40">
<div class="count-icon">
<span class="icon-wallet"></span>
</div>
<h3 class="count-to font-alt" data-countto="273"></h3>
<h5 class="count-title font-serif">Startups</h5>
</div>
</div>
<!-- CountTo end -->
<!-- CountTo start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="count-item mb-sm-40">
<div class="count-icon">
<span class="icon-wine"></span>
</div>
<h3 class="count-to font-alt" data-countto="1238"></h3>
<h5 class="count-title font-serif">Buspreneurs</h5>
</div>
</div>
<!-- CountTo end -->
<!-- CountTo start -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="count-item mb-sm-40">
<div class="count-icon">
<span class="icon-map-pin"></span>
</div>
<h3 class="count-to font-alt" data-countto="123"></h3>
<h5 class="count-title font-serif">Startup ecosystems connected</h5>
</div>
</div>
<!-- CountTo end -->
</div><!-- .row -->
</div>
</section>
<!-- Count to end -->
<!-- Divider -->
<hr class="divider-d">
<!-- Divider -->
<!-- Testimonials start -->
<section class="module bg-dark-60 pt-0 pb-0" data-background="assets/images/section-7.jpg">
<div class="testimonials-slider pt-140 pb-140">
<ul class="slides">
<!-- Slide 1 start -->
<li>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="module-icon">
<span class="icon-quote"></span>
</div>
</div>
</div><!-- .row -->
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<blockquote class="testimonial-text font-alt">I came up with my idea for using audio tags to precisely target relevant advertising aboard the StartupBus. Now, I have a public-private partnership, I've signed Jay-Z's Roc Nation and I'm <a href="http://www.bizjournals.com/cincinnati/news/2016/02/05/lisnr-nominated-for-big-award-at-sxsw.html?ana=twt" target="_blank">nominated for an award</a> at SXSW Interactive.</blockquote>
</div>
</div><!-- .row -->
<div class="row">
<div class="col-sm-4 col-sm-offset-4">
<div class="testimonial-author">
<div class="testimonial-caption font-alt">
<div class="testimonial-title">Rodney Williams</div>
<div class="testimonial-descr">Lisnr, Founder</div>
</div>
</div>
</div>
</div><!-- .row -->
</div><!-- .container -->
</li>
<!-- Slide 1 end -->
<!-- Slide 2 start -->
<li>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="module-icon">
<span class="icon-quote"></span>
</div>
</div>
</div><!-- .row -->
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<blockquote class="testimonial-text font-alt"><!--It was an absolute pleasure to work with a community that is made of people who are equally passionate about their mission as they are competent in their field.
<br/><br/>
As a sponsor, it's important to be able to hold your hand on your heart and say that you share the values and philosophies of an organisation, and that you both are striving for the same goal.
<br/><br/>-->
As a veteran of the tech industry, I can say that StartupBus epitomises the solidarity community that members of our burgeoning industry should be striving for. From the top down, StartupBus is a great community to be a part of, and I consider myself privileged to have been part of the story since Day One"</blockquote>
</div>
</div><!-- .row -->
<div class="row">
<div class="col-sm-4 col-sm-offset-4">
<div class="testimonial-author">
<div class="testimonial-caption font-alt">
<div class="testimonial-title">Simon Anquetil</div>
<div class="testimonial-descr">apphappening, CTO</div>
</div>
</div>
</div>
</div><!-- .row -->
</div><!-- .container -->
</li>
<!-- Slide 2 end -->
<!-- Slide 3 start -->
<li>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="module-icon">
<span class="icon-quote"></span>
</div>
</div>
</div><!-- .row -->
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<blockquote class="testimonial-text font-alt">Thanks to StartupBus I became a true entrepreneur and I'm now ready to pursue my own idea.</blockquote>
</div>
</div><!-- .row -->
<div class="row">
<div class="col-sm-4 col-sm-offset-4">
<div class="testimonial-author">
<div class="testimonial-caption font-alt">
<div class="testimonial-title">Wendy Geeraert</div>
<div class="testimonial-descr">guide2property, Founder</div>
</div>
</div>
</div>
</div><!-- .row -->
</div><!-- .container -->
</li>
<!-- Slide 3 end -->
</ul>
</div><!-- .testimonials-slider -->
</section>
<!-- Testimonials end -->
<!-- Widgets start -->
<div class="module-small bg-dark">
<div class="container" id="contact">
<div class="row">
<div class="col-sm-3">
<!-- Widget start -->
<div class="widget">
<h5 class="widget-title font-alt">About StartupBus Asia Pacific</h5>
<p>StartupBus Asia Pacific 2017 is one of three annual competitions of StartupBus. StartupBus believes entrepreneurship can't be taught but it can be learned through unique experiences. The first Australian StartupBus drove to Sydney back in 2014.</p>
<p>Want to partner with us?</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<!-- Widget end -->
</div>
<div class="col-sm-4">
<div class="widget">
<h5 class="widget-title font-alt">Mailing list</h5>
<p>
Stay up to date by subscribing to our <a href="http://eepurl.com/bvIEF9">mailing list</a>.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="fb-page" data-href="https://www.facebook.com/thestartupbus/" data-small-header="true" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/thestartupbus/"><a href="https://www.facebook.com/TheStartupBus/">StartupBus Asia Pacific</a></blockquote></div></div>
</div>
</div><!-- .row -->
</div>
</div>
<!-- Widgets end -->
<!-- Divider -->
<hr class="divider-d">