-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
967 lines (878 loc) · 33.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>GlobalAzureBootcamp2018 : Home</title>
<!-- Favicon -->
<link rel="shortcut icon" type="image/icon" href="assets/images/favicon.ico" />
<!-- Font Awesome -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<!-- Bootstrap -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/footer.css" rel="stylesheet">
<!-- Slick slider -->
<link href="assets/css/slick.css" rel="stylesheet">
<!-- Theme color -->
<link id="switcher" href="assets/css/theme-color/jelly-bean-theme.css" rel="stylesheet">
<!-- Main Style -->
<link href="style.css" rel="stylesheet">
<link href="assets/css/chat-bot.css" rel="stylesheet">
<!-- Fonts -->
<!-- Open Sans for body font -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800" rel="stylesheet">
<!-- Montserrat for title -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Start Header -->
<header id="mu-hero" class="" role="banner">
<!-- Start menu -->
<nav class="navbar navbar-fixed-top navbar-default mu-navbar">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"
aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Logo -->
<a class="navbar-brand" href="index.html">Global Azure Bootcamp 2018</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav mu-menu navbar-right">
<li>
<a href="#mu-hero">Home</a>
</li>
<li>
<a href="#mu-about">About Us</a>
</li>
<li>
<a href="#mu-schedule">Schedule</a>
</li>
<li>
<a href="#mu-speakers">Speakers</a>
</li>
<li>
<a href="#mu-venue">Venue</a>
</li>
<li>
<a href="#mu-register">Register</a>
</li>
<li>
<a href="#mu-sponsors">Sponsors</a>
</li>
<li>
<a href="#mu-communities">Communities</a>
</li>
<li>
<a href="#mu-contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- End menu -->
<div id="particle-js" style="position:absolute;height:100%;width:100%;z-index:10;">
</div>
<div class="mu-hero-overlay">
<div class="container">
<div class="mu-hero-area">
<!-- Start hero featured area -->
<div class="mu-hero-featured-area">
<!-- Start center Logo -->
<div class="mu-logo-area">
<!-- text based logo -->
<a class="mu-logo" href="#"><img class="" src="assets/images/logo-2018-250x222.png" alt="Men Speaker"></a>
<!-- image based logo -->
<!-- <a class="mu-logo" href="#"><img src="assets/images/logo.jpg" alt="logo img"></a> -->
</div>
<!-- End center Logo -->
<div class="mu-hero-featured-content">
<h1 style="font-size:75px;"><b>Global Azure Bootcamp 2018</b></h1>
<h2>Become a better professional with real-world practical insights into current technologies, and connect with like-minded
people!
</h2>
<p class="mu-event-date-line">April 21st, 2018 Bengaluru, India</p>
<div class="mu-event-counter-area">
<div id="mu-event-counter">
</div>
</div>
</div>
</div>
<!-- End hero featured area -->
</div>
</div>
</div>
</header>
<!-- End Header -->
<!-- Start main content -->
<main role="main">
<!-- Start About -->
<section id="mu-about">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-about-area">
<!-- Start Feature Content -->
<div class="row">
<div class="col-md-6">
<div class="mu-about-left">
<img class="" src="assets/images/logo-2018-500x444.png" alt="Men Speaker">
</div>
</div>
<div class="col-md-6">
<div class="mu-about-right">
<h2>About The Conference</h2>
Global Azure Bootcamp 2018 @ Bengaluru is a full day conference about the Microsoft Azure Cloud Computing Platform organized by <a href="www.meetup.com/Chennai-Microsoft-Azure-Solution-Architects-Group/">Bengaluru Azure User Group</a> collaborating with BDotnet, BItPro, OSSBangalore and BangaloreaOS Communities on 21st April 2018. It is free and open for everybody to join.
One day deep dive class to help thousands of people get up to speed on developing Cloud Computing Applications for Microsoft Azure.</p>
<p>This conference will feature numerous sessions and workshops delivered by MVPs and other expert speakers from the local community and Microsoft,
who will chase down the latest developments in the Microsoft ecosystem, share their experiences,
best practices and point you towards a more collaborative future. The talks and workshops will cover the full
stack of software development including the cloud, IT Pro, DevOps, Business Applications, and Security. We will also highlight emerging technologies like Machine Learning and the IoT.</p>
<p>If you are not in bengaluru, but still interested to join. Dont worry our Azure friends are organizing this event worldwide, check if your place is covered here. please visit: <a href="https://global.azurebootcamp.net/locations/">Global Azure Bootcamp</a></p>
</div>
</div>
</div>
<!-- End Feature Content -->
</div>
</div>
</div>
</div>
</section>
<!-- End About -->
<!-- Start Video -->
<section id="mu-video">
<div class="mu-video-overlay">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-video-area">
<!-- <h2>Watch Previous Event Video</h2> -->
<a class="mu-video-play-btn" href="#">
<i class="fa fa-play" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Start Video content -->
<div class="mu-video-content">
<div class="mu-video-iframe-area">
<a class="mu-video-close-btn" href="#">
<i class="fa fa-times" aria-hidden="true"></i>
</a>
<iframe width="854" height="480" src="https://www.youtube.com/embed/koFF_J9PFa4" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<!-- End Video content -->
</section>
<!-- End Video -->
<!-- Start Schedule -->
<section id="mu-schedule">
<div class="container">
<div class="row">
<div class="colo-md-12">
<div class="mu-schedule-area">
<div class="mu-title-area">
<h2 class="mu-title">Schedule Detail</h2>
<!-- <p>At the end of the day it all boils down to developers writing code; it boils down to programming. In all the tracks,
cool programmers will present intriguing programming cases, advanced tools to help you program more effectively
and new techniques and ways of thinking about the programming discipline.</p> -->
<br>
<!-- <h3>Day 1</h3> -->
</div>
<!-- <ul class="nav nav-tabs mu-schedule-menu" role="tablist">
<li role="presentation" class="active">
<a href="#day-one" aria-controls="day-one" role="tab" data-toggle="tab">Day 1</a>
</li>
</ul> -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="day-one">
<div class="mu-schedule-content-area">
<!-- Nav tabs -->
<ul class="nav nav-tabs mu-schedule-menu" role="tablist">
<li role="presentation" class="active">
<a href="#track-one" aria-controls="track-one" role="tab" data-toggle="tab">Web & Mobile</a>
</li>
<li role="presentation">
<a href="#track-two" aria-controls="track-two" role="tab" data-toggle="tab">Open source</a>
</li>
<li role="presentation">
<a href="#track-three" aria-controls="track-three" role="tab" data-toggle="tab">ITPro/DevOps</a>
</li>
<li role="presentation">
<a href="#track-four" aria-controls="track-four" role="tab" data-toggle="tab">Data, AI & ML </a>
</li>
<li role="presentation">
<a href="#track-five" aria-controls="track-five" role="tab" data-toggle="tab">Business, Office/SharePoint & Security</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content mu-schedule-content">
<div role="tabpanel" class="tab-pane fade mu-event-timeline in active" id="track-one">
<ul id="ulDay1DevAgendaTemplate">
<script id="day1DevAgendaTemplate" type="text/x-handlebars-template">
{{#dev}}
<li>
<div class="mu-single-event">
<img src="{{imageURL}}" class="mx-auto img-circle" style="height:50px;width:50px;">
<p class="mu-event-time">{{speaker}}</p>
<p class="mu-event-time">{{time}}</p>
<h3>{{title}}</h3>
<p class="text-muted">{{desc}}</p>
</div>
</li>
{{/dev}}
</script>
</ul>
</div>
<div role="tabpanel" class="tab-pane fade mu-event-timeline" id="track-two">
<ul id="ulDay1DevOSSAgendaTemplate">
<script id="day1DevOSSAgendaTemplate" type="text/x-handlebars-template">
{{#devOSS}}
<li>
<div class="mu-single-event">
<img src="{{imageURL}}" class="mx-auto img-circle" style="height:50px;width:50px;">
<p class="mu-event-time">{{speaker}}</p>
<p class="mu-event-time">{{time}}</p>
<h3>{{title}}</h3>
<p class="text-muted">{{desc}}</p>
</div>
</li>
{{/devOSS}}
</script>
</ul>
</div>
<div role="tabpanel" class="tab-pane fade mu-event-timeline" id="track-three">
<ul id="ulDay1ItProAgendaTemplate">
<script id="day1ItProAgendaTemplate" type="text/x-handlebars-template">
{{#itPro}}
<li>
<div class="mu-single-event">
<img src="{{imageURL}}" class="mx-auto img-circle" style="height:50px;width:50px;">
<p class="mu-event-time">{{speaker}}</p>
<p class="mu-event-time">{{time}}</p>
<h3>{{title}}</h3>
<p class="text-muted">{{desc}}</p>
</div>
</li>
{{/itPro}}
</script>
</ul>
</div>
<div role="tabpanel" class="tab-pane fade mu-event-timeline" id="track-four">
<ul id="ulDay1SharepointAgendaTemplate">
<script id="day1SharepointAgendaTemplate" type="text/x-handlebars-template">
{{#sharePoint}}
<li>
<div class="mu-single-event">
<img src="{{imageURL}}" class="mx-auto img-circle" style="height:50px;width:50px;">
<p class="mu-event-time">{{speaker}}</p>
<p class="mu-event-time">{{time}}</p>
<h3>{{title}}</h3>
<p class="text-muted">{{desc}}</p>
</div>
</li>
{{/sharePoint}}
</script>
</ul>
</div>
<div role="tabpanel" class="tab-pane fade mu-event-timeline" id="track-five">
<ul id="ulDay1OfficeAgendaTemplate">
<script id="day1OfficeAgendaTemplate" type="text/x-handlebars-template">
{{#office}}
<li>
<div class="mu-single-event">
<img src="{{imageURL}}" class="mx-auto img-circle" style="height:50px;width:50px;">
<p class="mu-event-time">{{speaker}}</p>
<p class="mu-event-time">{{time}}</p>
<h3>{{title}}</h3>
<p class="text-muted">{{desc}}</p>
</div>
</li>
{{/office}}
</script>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Schedule -->
<!-- Start Keynote Speakers -->
<section id="mu-speakers">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-speakers-area">
<div class="mu-title-area">
<h2 class="mu-title">Keynote Speakers</h2>
<!-- <p>Our speakers are very familiar faces to you, you must have seen/heard them talking on the latest and greatest on
the new innovations on Dev/IT in the local community meetups or in the premier conferences. We have assembled some
of the amazing expert speakers from the elite MVPs and Microsoft RD community.</p> -->
</div>
<!-- Start Speakers Content -->
<div class="mu-speakers-content">
<div class="mu-keynote-slider">
<script id="keynoteTemplate" type="text/x-handlebars-template">
{{#speakers}}
<div class="col-sm-6">
<div class="team-member text-center">
<img src="{{imageURL}}" class="mx-auto img-circle" style="height:244px" alt="speaker img">
<h4 >{{name}}</h4>
<p class="text-muted">{{title}}</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="{{twitter}}" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="{{facebook}}" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="{{linkedin}}" target="_blank"></a>
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
{{/speakers}}
</script>
<!-- Start single speaker -->
<!-- <div class="mu-single-speakers">
<img src="assets/images/speakers/anoop.jpg" style="height:250px" alt="speaker img">
<div class="mu-single-speakers-info">
<h3>Anoop Chandran Nair</h3>
<p>Enterprise Mobility Expert</p>
<ul class="mu-single-speakers-social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div> -->
<!-- End single speaker -->
</div>
</div>
<!-- End Speakers Content -->
</div>
</div>
</div>
</div>
</section>
<!-- End Keynote Speakers -->
<!-- Team -->
<section class="bg-light" id="team">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Our Speakers</h2>
</div>
</div>
<div class="row" id="dvFeaturedSpeakers">
<script id="featuredSpeakerTemplate" type="text/x-handlebars-template">
{{#featuredSpeakers}}
<div class="col-sm-3" style="height:350px">
<div class="team-member text-center">
<img src="{{imageURL}}" class="mx-auto img-circle" style="height:200px" alt="speaker img">
<h4 >{{name}}</h4>
<p class="text-muted">{{title}}</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="{{twitter}}" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="{{facebook}}" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="{{linkedin}}" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
{{/featuredSpeakers}}
</script>
</div>
</section>
<!-- Start Venue -->
<section id="mu-venue">
<div class="mu-venue-area">
<div class="row">
<div class="col-md-6 no-padding">
<div class="mu-venue-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3887.6587044412986!2d77.70345471448036!3d12.993667690841322!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae1198ca329acd%3A0x63a9fd1f891edc17!2sABB+Ability+Innovation+Center!5e0!3m2!1sen!2sus!4v1522395570849" width="100%" height="800px" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-6 no-padding">
<div>
<img src="assets/images/abb.jpg" class="img-responsive" alt="Brand Logo">
</div>
<div class="mu-venue-address">
<h2 class="fa fa-chevron-right" aria-hidden="true">
<i>Venue</i>
</h2>
<h3>ABB Ability Innovation Center,</h3>
<h4>Bhoruka Tech Park, Whitefield Main Road, Mahadevapura
Bengaluru, Karnataka 560048</h4>
<a href="https://goo.gl/maps/ikFaYFXQfjS2" class="btn-info">Google Map</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Venue -->
<!-- Start Pricing -->
<!-- <section id="mu-pricing">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-pricing-area">
<div class="mu-title-area">
<h2 class="mu-title">Pricing plans</h2>
</div>
<div class="mu-pricing-conten">
<div class="row">
<div class="col-md-12">
<div class="mu-single-price">
<div class="mu-single-price-head">
<span class="mu-currency" style="text-decoration:line-through">₹ 5000</span>
</div>
<div class="mu-single-price-head">
<span class="mu-currency" >₹ 3000</span>
</div>
<h3 class="mu-price-title">Early birds</h3>
<ul>
<li>Entry to the conference on February 2<sup>nd</sup> & 3<sup>rd</sup></li>
<li>Drinks & Refreshments</li>
<li>Access to many learning opportunities to networking with people</li>
<li>Registration commences on January 1<sup>st</sup> 2018</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Pricing -->
<!-- Start Register -->
<section id="mu-register">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-register-area">
<div class="mu-title-area">
<h2 class="mu-title">Registeration Closed</h2>
</div>
<div class="mu-register-content">
<!-- <iframe src="https://eventbrite.com/tickets-external?eid=41865652293&ref=etckt" frameborder="0" height="375" width="100%" vspace="0" hspace="0" marginheight="5" marginwidth="5" scrolling="auto" allowtransparency="true"></iframe><div style="font-family:Helvetica, Arial; font-size:12px; padding:10px 0 5px; margin:2px; width:100%; text-align:left;" ><a class="powered-by-eb" style="color: #ADB0B6; text-decoration: none;" target="_blank" href="https://www.eventbrite.com/">Powered by Eventbrite</a></div> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Register -->
<!-- Start Sponsors -->
<section id="mu-sponsors">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-sponsors-area">
<div class="mu-title-area">
<h2 class="mu-title">Our Sponsors</h2>
<p>We are thankful for the sponsorers of this event with their support and encouragement.</p>
</div>
<!-- Start spnonsors brand logo -->
<div class="mu-sponsors-content">
<div class="row">
<div class="col-sm-5">
<a href="meetup.com/Microsoft-Azure-Bangalore/" target="_blank"><img src="assets/images/sponsors/abb.png" alt="ABB"></a>
</div>
<div class="col-sm-5">
<img src="assets/images/sponsors/microsoft.png" alt="Microsoft">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Sponsors -->
<!-- Start Communities -->
<section id="mu-communties">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-sponsors-area">
<div class="mu-title-area">
<h2 class="mu-title">Collaborating Communities</h2>
</div>
<!-- Start spnonsors brand logo -->
<div class="mu-sponsors-content">
<div class="row">
<div class="col-sm-4">
<div class="mu-sponsors-single">
<a href="meetup.com/Microsoft-Azure-Bangalore/" target="_blank"><img src="assets/images/community/aug-blr.png" alt="Brand Logo"></a>
</div>
</div>
<div class="col-sm-4">
<div class="mu-sponsors-single">
<a href="meetup.com/Microsoft-Azure-Bangalore/" target="_blank"><img src="assets/images/community/bdotnet_logo.png" alt="Brand Logo"></a>
</div>
</div>
<div class="col-md-4">
<div class="mu-sponsors-single">
<a href="meetup.com/Microsoft-Azure-Bangalore/" target="_blank"><img src="assets/images/community/bitpro.png" alt="Brand Logo"></a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-5">
<div class="mu-sponsors-single">
<a href="meetup.com/Microsoft-Azure-Bangalore/" target="_blank"><img src="assets/images/community/aOS.png" alt="Brand Logo"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Sponsors -->
<!--Start T & C-->
<!-- <section id="mu-terms">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-terms-area">
<div class="mu-title-area">
<h2 class="mu-title"> Terms & Conditions</h2>
</div>
<div class="mu-terms-textarea">
<h4 class="mu-title pull-left">1. Tickets</h4>
<br />
<br />
<p class="pull-left">Cancellations received before Jan 05 2018 are entitled to a full refund. Cancellations received after Jan 05 2018 are non-refundable.</p>
<p class="pull-left">Early Bird tickets are non-refundable.</p>
</div>
<div class="mu-terms-textarea">
<h4 class="mu-title pull-left">2. Video and Recording</h4>
<p class="pull-left">All presentations and associated materials are the speakers’ intellectual property. Recording for commercial purposes requires permission from both the organizer and the speaker.</p>
<p class="pull-left">
By attending the conference, attendees have agreed to allow the organizer to use images, audio, and video recorded content on site for educational and promotional purposes.</p>
</div>
<div class="mu-terms-textarea">
<h4 class="mu-title pull-left">3. Responsibility</h4>
<p class="pull-left">
The participant acknowledges that he/she may not engage in damage claims against the Conference Organizers should the holding of the Conference be hindered or prevented by unexpected political or economic events, natural disaster, the non-appearance of speakers, or other reasons that might necessitate a program change.
</p>
<p class="pull-left">
Organizers may cancel the event at any time and tickets will be refunded in full without any additional fees.
</p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--End T & C-->
<!--Start Code of Conduct-->
<section id="mu-code">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-code-area">
<div class="mu-title-area">
<h2 class="mu-title">Code of Conduct</h2>
</div>
<div class="mu-code-textarea">
<p class="pull-left">GlobalAzureBootcamp2018 is dedicated to providing a harassment-free conference experience for everyone. We invite you to help us make GlobalAzureBootcamp2018 a place that is welcoming and respectful to all participants, so everyone can focus only on the conference, and the great networking and community richness that can happen when we get together in person.
We will do whatever we believe is necessary to ensure that GlobalAzureBootcamp2018 is a safe and productive environment for everyone.</p>
<p class="pull-left">Please bring any concerns to the immediate attention of the event staff, or contact our Event Coordinator at ilyas@bornoncloud.com. We thank our attendees for their help in keeping the event welcoming, respectful, and friendly to all participants.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Code of Conduct-->
<!-- Start Contact -->
<section id="mu-contact">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-contact-area">
<div class="mu-title-area">
<h2 class="mu-heading-title">Contact Us</h2>
<p>Get in touch, we don't bite!</p>
<p> <a href="mailto:ilyas@bornoncloud.com">ilyas@bornoncloud.com</a>
</p>
</div>
<!-- Start Contact Content -->
<!-- <div class="mu-contact-content">
<div class="row">
<div class="col-md-12">
<div class="mu-contact-form-area">
<div id="form-messages"></div>
<form id="ajax-contact" method="post" action="mailer.php" class="mu-contact-form">
<div class="form-group">
<input type="text" class="form-control" placeholder="Name" id="name" name="name" required>
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter Email" id="email" name="email" required>
</div>
<div class="form-group">
<textarea class="form-control" placeholder="Message" id="message" name="message" required></textarea>
</div>
<button type="submit" class="mu-send-msg-btn"><span>SUBMIT</span></button>
</form>
</div>
</div>
</div>
</div> -->
<!-- End Contact Content -->
</div>
</div>
</div>
</div>
</section>
<!-- End Contact -->
</main>
<!-- End main content -->
<!--header-->
<!-- <div class="main-container">
<figure class="fxd">
<section class="round">
<div class="round-overlay" title="Click Here"></div>
<div class="round-pulse"></div>
<span class="tooltiptext">How may I help you?</span>
<div class="status bot-status-active"></div>
</section>
</figure>
<section class="chatContainer">
<header class="chat-header">
<figure class="bubble-ico">chat icon</figure>
<h3>
<span>May I Help you ?</h3>
<div class="minimize">minimize</div>
<div class="clear-re">Clear or Refresh</div>
</header>
<div class="app-container">
<iframe id="botDiv" src="https://webchat.botframework.com/embed/mvpconfbot_HFDddVnjHWr?s=sgfp1RLelXk.cwA.4u8.zGpyx65YNM6UyQaRJQW3TL6HghkDz4dn8l248NtRQBI"
width="380" height="385" style="margin-bottom:-5px"></iframe>
</div>
</section>
</div> -->
<!-- Start footer -->
<footer id="mu-footer" role="contentinfo">
<div class="container">
<div class="mu-footer-area">
<div class="mu-footer-top">
<div class="mu-social-media">
<a href="#">
<i class="fa fa-facebook"></i>
</a>
<a href="#">
<i class="fa fa-twitter"></i>
</a>
<a href="#">
<i class="fa fa-google-plus"></i>
</a>
<a href="#">
<i class="fa fa-linkedin"></i>
</a>
<a href="#">
<i class="fa fa-youtube"></i>
</a>
</div>
</div>
<div class="mu-footer-bottom">
<p class="mu-copy-right">© Global Azure Bootcamp 2018 Copyright. Bengaluru Azure User Group. All right reserved.</p>
</div>
</div>
</div>
</footer>
<!-- End footer -->
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- Bootstrap -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Slick slider -->
<script type="text/javascript" src="assets/js/slick.min.js"></script>
<!-- Event Counter -->
<script type="text/javascript" src="assets/js/jquery.countdown.min.js"></script>
<!-- Ajax contact form -->
<script type="text/javascript" src="assets/js/app.js"></script>
<!--handlebarjs-->
<script type="text/javascript" src="assets/js/handlebars.min-latest.js"></script>
<script type="text/javascript" src="data/speakers.js"></script>
<script type="text/javascript" src="data/agenda.js"></script>
<script type="text/javascript" src="assets/js/services.js"></script>
<!-- Custom js -->
<script type="text/javascript" src="assets/js/custom.js"></script>
<script type='text/javascript' src='//platform-api.sharethis.com/js/sharethis.js#property=59d270f520f64600117ce96a&product=unknown'
async='async'></script>
<script src="./assets/js/particles.min.js"></script>
<script>
var partJson = {
"particles": {
"number": {
"value": 200,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#ffffff"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 5
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 0.7,
"random": false,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 5,
"random": true,
"anim": {
"enable": false,
"speed": 40,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#ffffff",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 6,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "repulse"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 400,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true,
"config_demo": {
"hide_card": false,
"background_color": "#b61924",
"background_image": "",
"background_position": "50% 50%",
"background_repeat": "no-repeat",
"background_size": "cover"
}
};
var jsonUri = "data:text/plain;base64,"+window.btoa(JSON.stringify(partJson));
particlesJS.load('particle-js', jsonUri, function () {
console.log('callback - particles.js config loaded');
});
</script>
</body>
</html>