-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1110 lines (939 loc) · 49.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
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">
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<title>BeeCon 2017</title>
<meta name="description" content="">
<meta name="keywords" content="Order of the bee, Alfresco, BeeCon, DevCon">
<meta name="author" content="OOTBee">
<link rel="shortcut icon" href="/assets/img/favicon.png">
<link rel="apple-touch-icon" href="/assets/img/apple-touch-icon.jpg">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/img/apple-touch-icon-72x72.jpg">
<link rel="apple-touch-icon" sizes="114x114" href="/assets/img/apple-touch-icon-114x114.jpg">
<link rel="stylesheet" type="text/css" href="/assets/css/custom-animations.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/style.css" />
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="preloader-mask">
<div class="preloader"></div>
</div>
<section id="hero" class="hero-section bg1 bg-cover window-height light-text">
<ul class="socials-nav">
<li class="socials-nav-item"><a href="http://www.twitter.com/orderofthebee"><span class="fa fa-twitter"></span></a></li>
<li class="socials-nav-item"><a href="http://www.github.com/orderofthebee"><span class="fa fa-github"></span></a></li>
<li class="socials-nav-item"><a href="http://posts.orderofthebee.org/rss"><span class="fa fa-rss"></span></a></li>
<li class="socials-nav-item"><a href="http://www.slideshare.net/orderofthebee"><span class="fa fa-slideshare"></span></a></li>
<li class="socials-nav-item"><a href="https://www.youtube.com/channel/UCAEhQYN2XzOMk8vdlm4Wgug"><span class="fa fa-youtube"></span></a></li>
</ul>
<div class="heading-block centered-block align-center">
<div class="container">
<h5 class="heading-alt" style="margin-bottom: 8px;"><span class="fa fa-calendar-o base-clr-txt"></span>April 25-28, 2017 <span class="fa fa-map-marker base-clr-txt" style="margin-left: 14px;"></span>Zaragoza, Spain</h5>
<!-- Countdown start -->
<div class="row counters-wrapper countdown">
<div class="col-sm-4">
<div class="counter-block counter-block-no-border counter-block-white has-separator">
<div class="counter-box">
<div class="counter-content">
<span class="count">{dnn}</span>
<p class="title">days</p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="counter-block counter-block-no-border counter-block-white has-separator">
<div class="counter-box">
<div class="counter-content">
<span class="count">{hnn}</span>
<p class="title">hours</p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="counter-block counter-block-no-border counter-block-white">
<div class="counter-box">
<div class="counter-content">
<span class="count">{mnn}</span>
<p class="title">minutes</p>
</div>
</div>
</div>
</div>
</div>
<h6 class="base-font">The place for the Alfresco community of professionals and enthusiasts to meet, share, learn, build, and enrich relationships.</h6>
<div class="btns-container">
<a href="#" class="btn btn-md" data-modal-link="become-a-speaker">Become a speaker</a>
<a href="#" class="btn btn-md" data-modal-link="become-a-sponsor">Become a sponsor</a>
</div>
</div>
</div>
</section>
<header class="header header-black">
<div class="header-wrapper">
<div class="container">
<div class="col-sm-2 col-xs-12 navigation-header">
<a href="#" class="logo">
<img src="/assets/img/beecon_logo.png" alt="BeeCon" width="119" height="17" class="retina-hide">
<img src="/assets/img/[email protected]" alt="BeeCon" width="119" height="17" class="retina-show">
</a>
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navigation" aria-expanded="false" aria-controls="navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="col-sm-10 col-xs-12 navigation-container">
<div id="navigation" class="navbar-collapse collapse">
<ul class="navigation-list pull-left light-text">
<li class="navigation-item"><a href="#speakers" class="navigation-link">Speakers</a></li>
<li class="navigation-item"><a href="#schedule" class="navigation-link">Schedule</a></li>
<li class="navigation-item"><a href="#tickets" class="navigation-link">Tickets</a></li>
<li class="navigation-item"><a href="#gallery" class="navigation-link">Gallery</a></li>
<li class="navigation-item"><a href="#sponsors" class="navigation-link">Sponsors</a></li>
<li class="navigation-item"><a href="#contacts" class="navigation-link">Contacts</a></li>
</ul>
<!--a href="#" class="pull-right buy-btn">Register</a-->
</div>
</div>
</div>
</div>
</header>
<section id="about" class="section align-center">
<div class="container">
<span class="icon section-icon icon-multimedia-12"></span>
<h3>Alfresco Developer Conference</h3>
<!--p class="text-alt"></p-->
<br />
<br />
<div class="tabs-wrapper tabs-horizontal">
<ul class="nav nav-tabs">
<li class="active"><a href="#horizontal_tab1" data-toggle="tab">
<h6 class="heading-alt"><span class="fa fa-code"></span> General info</h6>
</a></li>
<li><a href="#horizontal_tab2" data-toggle="tab">
<h6 class="heading-alt"><span class="fa fa-rocket"></span> Hack-a-thon</h6>
</a></li>
<li><a href="#horizontal_tab3" data-toggle="tab">
<h6 class="heading-alt"><span class="fa fa-external-link"></span> Sponsor info</h6>
</a></li>
</ul>
<div class="tab-content">
<div id="horizontal_tab1" class="tab-pane fade active in">
<div class="col-sm-5 img-column">
<img src="/assets/img/gallery/1.jpg" alt="" class="img-responsive" />
</div>
<div class="col-sm-7 align-left">
<br/>
<h6>About the event</h6>
<p>Organised by the Order of the Bee, an independent organisation of the Alfresco community, BeeCon puts learning first and leaves the marketing out. Whether you are a developer, information professional, student, or Alfresco employee, BeeCon is the place where you’ll find something for you, including:</p>
<ul style="list-style-position: inside;">
<li>3 days of breakout sessions</li>
<li>Keynotes from Alfresco and Order of the Bee leadership</li>
<li>Bird of a Feather and Hands-On sessions</li>
<li>Hack-a-thon to level-up your skills</li>
<li>Networking and collaboration with other experts</li>
</ul>
</div>
</div>
<div id="horizontal_tab2" class="tab-pane fade">
<div class="col-sm-7 align-right">
<br/>
<h6>Hack-a-thon</h6>
<p>On the first day of the BeeCon Conference, we will host a Hack-a-thon.</p>
<p>This will be the perfect session for anyone looking to scratch their collaboration itch and work with other members of the community on an experimental addon, curating / upgrading an existing community project to the newest release of Alfresco, or simply discuss and define requirements for a feature or use case for which Alfresco may currently lack support or which would benefit from improvements. The wide array of potential activities means that any attendee may participate in this session, and in some cases differences in perspective or experience may even be essential factors.</p>
</div>
<div class="col-sm-5 img-column">
<img src="/assets/img/gallery/2.jpg" alt="" class="img-responsive" />
</div>
</div>
<div id="horizontal_tab3" class="tab-pane fade">
<div class="col-sm-5 img-column">
<img src="/assets/img/gallery/3.jpg" alt="" class="img-responsive" />
</div>
<div class="col-sm-7 align-left">
<br/>
<h6>Sponsors</h6>
<p>BeeCon is organised by the community. The conference would not take place without the support of sponsors.</p>
<p>Become a sponsor to be known in the Alfresco community, to meet new partners and customers, to hire new Alfresco developers and to show your Alfresco expertise.</p>
<p>Contact <a href="mailto:[email protected]">[email protected]</a> to learn about our sponsorship offerings and to become a sponsor.</p>
</div>
</div>
</div>
</div>
<p class="text-left small"><i>* photos from BeeCon 2016 made by John Newton and Olivier Anh</i></p>
</div>
</section>
<section id="counters" class="section align-center overlay bg-cover bg5 light-text">
<div class="container">
<div class="row counters-wrapper">
<div class="col-sm-3">
<div class="counter-block counter-block-no-border">
<div class="counter-box">
<div class="counter-content">
<span class="count" data-from="0" data-to="45">0</span>
<!--span class="staticcount">TBC</span-->
<p class="title">speakers</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="counter-block counter-block-no-border">
<div class="counter-box">
<div class="counter-content">
<span class="count" data-from="0" data-to="4">0</span>
<p class="title">days</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="counter-block counter-block-no-border">
<div class="counter-box">
<div class="counter-content">
<span class="count" data-from="0" data-to="250">0</span>
<p class="title">attendees</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="counter-block counter-block-no-border">
<div class="counter-box">
<div class="counter-content">
<!--span class="count" data-from="0" data-to="50">0</span-->
<span class="staticcount">-</span>
<p class="title">sessions</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="speakers" class="section align-center">
<div class="container">
<span class="icon section-icon icon-faces-users-04"></span>
<h3>Speakers</h3>
<!--p class="text-alt">Meet our <span class="highlight">professonals</span></p-->
<br />
<br />
<div class="col-sm-12 align-center">
<a target="_blank" class="btn btn-outline-clr btn-md" disabled>Coming soon</a>
</div>
<!--div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="/assets/img/speakers/speaker1.jpg" alt="John Doe" class="img-responsive"></div>
<h3 class="name">ERIC BOLDY</h3>
<p class="text-alt"><small>Project Manager</small></p>
<p class="about">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<ul class="speaker-socials">
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-google-plus"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="/assets/img/speakers/speaker2.jpg" alt="John Doe" class="img-responsive"></div>
<h3 class="name">JAMES ROCK</h3>
<p class="text-alt"><small>VP Product @ Flopbox</small></p>
<p class="about">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<ul class="speaker-socials">
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-google-plus"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="/assets/img/speakers/speaker3.jpg" alt="John Doe" class="img-responsive"></div>
<h3 class="name">ANDREA WARRAETY</h3>
<p class="text-alt"><small>Designer @ Winstagrap</small></p>
<p class="about">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<ul class="speaker-socials">
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-google-plus"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="/assets/img/speakers/speaker4.jpg" alt="John Doe" class="img-responsive"></div>
<h3 class="name">MARTIN BRANSON</h3>
<p class="text-alt"><small>Evangelist @ Doogle</small></p>
<p class="about">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<ul class="speaker-socials">
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-google-plus"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="/assets/img/speakers/speaker5.jpg" alt="John Doe" class="img-responsive"></div>
<h3 class="name">AMY WARNER</h3>
<p class="text-alt"><small>Graphic Designer</small></p>
<p class="about">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<ul class="speaker-socials">
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-google-plus"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="/assets/img/speakers/speaker2.jpg" alt="John Doe" class="img-responsive"></div>
<h3 class="name">ALEC KROSOVIC</h3>
<p class="text-alt"><small>Project Manager</small></p>
<p class="about">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<ul class="speaker-socials">
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-google-plus"></span></a></li>
</ul>
</div>
</div-->
</div>
</section>
<section id="schedule" class="section schedule-section align-center">
<div class="container">
<span class="icon section-icon icon-office-21"></span>
<h3>Schedule</h3>
<p class="text-alt">Vast number of different speeches<br/> and <span class="highlight">activities</span></p>
<br />
<br />
<!-- Schedule start -->
<div class="schedule">
<!-- Navigation by day start -->
<ul class="nav nav-schedule">
<li class="active"><a href="#day1" data-toggle="tab"><h5 class="highlight">Day 1</h5><p class="text-alt">25/04/2017</p></a></li>
<li><a href="#day2" data-toggle="tab"><h5 class="highlight">Day 2</h5><p class="text-alt">26/04/2017</p></a></li>
<li><a href="#day3" data-toggle="tab"><h5 class="highlight">Day 3</h5><p class="text-alt">27/04/2017</p></a></li>
<li><a href="#day4" data-toggle="tab"><h5 class="highlight">Day 4</h5><p class="text-alt">28/04/2017</p></a></li>
</ul>
<!-- Navigation by day end -->
<!-- First level content start -->
<div class="tab-content">
<!-- Day 1 content start -->
<div id="day1" class="tab-pane fade active in">
<!-- Navigation by auditorium start -->
<!--ul class="nav nav-schedule">
<li class="active"><a href="#day1_auditorium1" data-toggle="tab">Auditorium 1</a></li>
<li><a href="#day1_auditorium2" data-toggle="tab">Auditorium 2</a></li>
<li><a href="#day1_auditorium3" data-toggle="tab">Auditorium 3</a></li>
</ul-->
<!-- Navigation by auditorium start -->
<!-- Second level content start -->
<div class="tab-content tab-content-schedule">
<div id="day1_auditorium1" class="tab-pane fade active in">
<div class="panel-group" id="day1_auditorium1_timeline">
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<span class="fa fa-group"></span>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time1" class="schedule-item-toggle">
<strong class="time highlight"><span class="icon icon-office-24"></span>9:00 AM (preliminarily)</strong>
<h6 class="title">Hack-a-thon<i class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time1" class="panel-collapse collapse in schedule-item-body">
<article>
<p class="description">Join Hack-a-thon to work with other members of the community on an experimental addon, curating / upgrading an existing community project to the newest release of Alfresco, or simply discuss and define requirements for a feature or use case for which Alfresco may currently lack support or which would benefit from improvements.</p>
<!--strong class="highlight speaker-name">Michael Lambert</strong-->
</article>
</div>
</div>
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<span class="fa fa-beer"></span>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time2" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>Evening</strong>
<h6 class="title">Welcome Party<i class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time2" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Exact time and address of the restaurant/pub will be published soon.</p>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="day2" class="tab-pane">
<!-- Navigation by auditorium start -->
<!--ul class="nav nav-schedule">
<li class="active"><a href="#day1_auditorium1" data-toggle="tab">Auditorium 1</a></li>
<li><a href="#day1_auditorium2" data-toggle="tab">Auditorium 2</a></li>
<li><a href="#day1_auditorium3" data-toggle="tab">Auditorium 3</a></li>
</ul-->
<!-- Navigation by auditorium start -->
<!-- Second level content start -->
<div class="tab-content tab-content-schedule">
<div id="day1_auditorium1" class="tab-pane fade active in">
<div class="panel-group" id="day1_auditorium1_timeline">
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<span class="fa fa-group"></span>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time1" class="schedule-item-toggle">
<strong class="time highlight"><span class="icon icon-office-24"></span>9:00 AM (preliminarily)</strong>
<h6 class="title">Sessions<i class="icon icon-arrows-06"></i></h6>
</a>
<!--div id="day1_auditorium1_time1" class="panel-collapse collapse in schedule-item-body">
<article>
<p class="description">Join Hack-a-thon to work with other members of the community on an experimental addon, curating / upgrading an existing community project to the newest release of Alfresco, or simply discuss and define requirements for a feature or use case for which Alfresco may currently lack support or which would benefit from improvements.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div-->
</div>
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<span class="fa fa-cutlery"></span>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time2" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>Evening</strong>
<h6 class="title">Party<i class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time2" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Exact time and address of the restaurant/pub will be published soon.</p>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="day3" class="tab-pane">
<div class="tab-content tab-content-schedule">
<div id="day1_auditorium1" class="tab-pane fade active in">
<div class="panel-group" id="day1_auditorium1_timeline">
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<span class="fa fa-group"></span>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time1" class="schedule-item-toggle">
<strong class="time highlight"><span class="icon icon-office-24"></span>10:00 AM (preliminarily)</strong>
<h6 class="title">Sessions<i class="icon icon-arrows-06"></i></h6>
</a>
<!--div id="day1_auditorium1_time1" class="panel-collapse collapse in schedule-item-body">
<article>
<p class="description">Join Hack-a-thon to work with other members of the community on an experimental addon, curating / upgrading an existing community project to the newest release of Alfresco, or simply discuss and define requirements for a feature or use case for which Alfresco may currently lack support or which would benefit from improvements.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div-->
</div>
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<span class="fa fa-child"></span>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time2" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>Evening</strong>
<h6 class="title">Entertainment<i class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time2" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Details will be published soon.</p>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="day4" class="tab-pane">
<div class="tab-content tab-content-schedule">
<div id="day1_auditorium1" class="tab-pane fade active in">
<div class="panel-group" id="day1_auditorium1_timeline">
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<span class="fa fa-group"></span>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time1" class="schedule-item-toggle">
<strong class="time highlight"><span class="icon icon-office-24"></span>9:00 AM (preliminarily)</strong>
<h6 class="title">Sessions<i class="icon icon-arrows-06"></i></h6>
</a>
<!--div id="day1_auditorium1_time1" class="panel-collapse collapse in schedule-item-body">
<article>
<p class="description">Join Hack-a-thon to work with other members of the community on an experimental addon, curating / upgrading an existing community project to the newest release of Alfresco, or simply discuss and define requirements for a feature or use case for which Alfresco may currently lack support or which would benefit from improvements.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div-->
</div>
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<span class="fa fa-frown-o"></span>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time1" class="schedule-item-toggle">
<strong class="time highlight"><span class="icon icon-office-24"></span>12:00 PM</strong>
<h6 class="title">Farewell keynote<i class="icon icon-arrows-06"></i></h6>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="sign_up" class="section bg-cover overlay bg4 light-text align-center">
<div class="container">
<h2><span class="highlight">Newsletter</span> Sign Up</h2>
<small>No Spam - Only latest news, tickets availability and activity updates</small>
<div class="col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2">
<!--form id="subscribe_main" action="" method="post" enctype="multipart/form-data" class="form row newsletter-form mailchimp-form">
<fieldset class="col-sm-8">
<input id="NewsletterEmail" name="NewsletterEmail" type="email" placeholder="[email protected]">
</fieldset>
<fieldset class="col-sm-4">
<input type="submit" value="submit" class="btn btn-sm btn-outline-clr">
</fieldset>
<div class="response"></div>
</form-->
<div class="col-sm-12 align-center padding-vertical">
<a target="_blank" class="btn btn-outline-clr btn-md" href="https://docs.google.com/forms/d/e/1FAIpQLSfpc0kjCePhp6EdcaxJNwcU05VaYiGV_KrBNGal9MlyqMwNfA/viewform">Subscribe</a>
</div>
</div>
</div>
</section>
<section id="tickets" class="section align-center">
<div class="container">
<span class="icon section-icon icon-shopping-04"></span>
<h3>Tickets</h3>
<!--p class="text-alt">Get yours while they are still <span class="highlight">available</span></p-->
<br/>
<br/>
<!--div class="row">
<div class="col-sm-4">
<div class="package-column special-column">
<h6 class="package-title">Early Bird</h6>
<div class="package-price">
<span class="currency">€</span>80
</div>
<div class="package-detail">
<ul>
<li><span class="fa fa-check check-icon"></span>Hack-a-thon</li>
<li><span class="fa fa-check check-icon"></span>Breakout Sessions</li>
<li><span class="fa fa-check check-icon"></span>Free Snacks</li>
<li><span class="fa fa-check check-icon"></span>Evening Party</li>
</ul>
</div>
<a href="#" class="btn btn-lg ">Buy now</a>
</div>
</div>
<div class="col-sm-4">
<div class="package-column">
<h6 class="package-title">Silver Pass</h6>
<div class="package-price">
<span class="currency">€</span>120
</div>
<div class="package-detail">
<ul>
<li><span class="fa fa-check check-icon"></span>Hack-a-thon</li>
<li><span class="fa fa-check check-icon"></span>Breakout Sessions</li>
<li><span class="fa fa-check check-icon"></span>Free Snacks</li>
<li><span class="fa fa-check check-icon"></span>Evening Party</li>
</ul>
</div>
<a href="#" class="btn btn-lg btn-outline-clr disabled">Buy now</a>
</div>
</div>
<div class="col-sm-4">
<div class="package-column">
<h6 class="package-title">Gold Pass</h6>
<div class="package-price">
<span class="currency">€</span>160
</div>
<div class="package-detail">
<ul>
<li><span class="fa fa-check check-icon"></span>Hack-a-thon</li>
<li><span class="fa fa-check check-icon"></span>Breakout Sessions</li>
<li><span class="fa fa-check check-icon"></span>Free Snacks</li>
<li><span class="fa fa-check check-icon"></span>Evening Party</li>
</ul>
</div>
<a href="#" class="btn btn-lg btn-outline-clr disabled">Buy now</a>
</div>
</div>
</div>
</div-->
<div class="col-sm-12 align-center">
<a target="_blank" class="btn btn-outline-clr btn-md" disabled>Coming soon</a>
</div>
</section>
<section id="feedback" class="section align-center" style="padding-top: 25px;">
<div class="container">
<h5 class="heading-alt">TESTIMONIALS</h5>
<p class="text-alt" style="margin-bottom: 80px;">What people <span class="highlight">say</span></p>
<div class="row">
<div class="col-sm-4">
<div class="testimonial">
<a href="https://www.linkedin.com/pulse/order-bee-more-than-just-alfresco-community-vasil-iliev" target="_blank"><article class="text-box">During these days I had the chance to meet the people which I read about, world-wide celebrities and people who helped me while I was struggling to find a solution. In between all this people I got the chance to talk to one very important person who helped me solve some very important problems and do that without even knowing. It was an amazing experience and see you next year in Spain.</article></a>
<div class="author-block">
<div class="photo-container" style="background-image: url('assets/img/testimonials/client3.jpg')"></div>
<strong class="name"><a href="https://www.linkedin.com/pulse/order-bee-more-than-just-alfresco-community-vasil-iliev" target="_blank">Vasil Iliev</a></strong>
<small class="text-alt company">Software Developer at Neocom AD Skopje</small>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="testimonial">
<a href="http://bric.brussels/en/news_publications/news/alfresco-beecon?set_language=en" target="_blank"><article class="text-box">It was an opportunity to meet national and international experts, discuss practical cases with them, exchange experiences with other Alfresco users and more. Alfresco CTO and founder John Newton was there! This partnership also gave BRIC staff an opportunity to present their internal projects developed via Alfresco and place their skills at the service of other Alfresco initiatives.</article></a>
<div class="author-block">
<div class="photo-container" style="background-image: url('assets/img/testimonials/client1.jpg')"></div>
<strong class="name"><a href="http://bric.brussels/en/news_publications/news/alfresco-beecon?set_language=en" target="_blank">CIRB-CIBG-BRIC</a></strong>
<small class="text-alt company">BeeCon 2016 Sponsor</small>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="testimonial">
<a href="http://blog.dbi-services.com/beecon-day-2-activiti-sdkspk-migration-and-zombies/" target="_blank"><article class="text-box">I was finally able to meet some people from the Order Of The Bee with whom I had quite interesting discussions over the past few months and to see again some others which usually went to the Alfresco Summit, just like me. So in conclusion, if you are interested in Alfresco, I can only encourage you to join the OOTB and participate as much as possible. Trust me, I know it can be difficult...</article></a>
<div class="author-block">
<div class="photo-container" style="background-image: url('assets/img/testimonials/client2.jpg')"></div>
<strong class="name"><a href="http://blog.dbi-services.com/beecon-day-2-activiti-sdkspk-migration-and-zombies/" target="_blank">Morgan Patou</a></strong>
<small class="text-alt company">Consultant @ dbi services</small>
</div>
</div>
</div>
</div>
</div>
</section>
<!--section id="register" class="section overlay overlay-clr bg-cover bg4 light-text align-center">
<div class="container">
<h2>Register to Ventcamp now!</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting <br /> industry. took a galley of type and scrambled it to make a type.</p>
<br />
<br />
<a href="#" class="btn btn-lg btn-outline">Register</a>
</div>
</section-->
<section id="gallery" class="section align-center">
<div class="container">
<span class="icon section-icon icon-badges-votes-01"></span>
<h3>BeeCon 2016</h3>
<p class="text-alt">see what we did <span class="highlight">lately</span></p>
<br/>
<div class="gallery masonry">
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-1">
<img src="/assets/img/gallery/gallery1-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-1">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery1.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-2">
<img src="/assets/img/gallery/gallery2-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-2">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery2.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-3">
<img src="/assets/img/gallery/gallery3-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-3">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery3.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-4">
<img src="/assets/img/gallery/gallery4-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-4">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery4.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-5">
<img src="/assets/img/gallery/gallery5-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-5">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery5.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-6">
<img src="/assets/img/gallery/gallery6-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-6">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery6.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-7">
<img src="/assets/img/gallery/gallery7-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-7">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery7.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-8">
<img src="/assets/img/gallery/gallery8-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-8">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery8.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-9">
<img src="/assets/img/gallery/gallery9-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-9">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery9.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-10">
<img src="/assets/img/gallery/gallery10-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-10">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery10.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-11">
<img src="/assets/img/gallery/gallery11-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-11">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery11.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-12">
<img src="/assets/img/gallery/gallery12-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery-12">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<img src="/assets/img/gallery/gallery12.jpg" class="full-width-img" alt="gallery1">
</div>
</div>
</span>
</div>
</div>
<div class="col-sm-12 align-center">
<a href="/2016/" target="_blank" class="btn btn-outline-clr btn-md">BeeCon 2016 website</a>
</div>
</section>
<section id="sponsors" class="section align-center">
<div class="container">
<span class="icon section-icon icon-documents-bookmarks-12"></span>
<h3>Organisers</h3>
<br/>
<div class="sponsors">
<a href="http://www.zaragoza.es/ciudad/etopia/" target="_blank"><div class="sponsor big"><img src="/assets/img/sponsors/etopia.png" alt=""></div></a>
<a href="http://orderofthebee.org" target="_blank"><div class="sponsor big"><img src="/assets/img/sponsors/ootb.png" alt=""></div></a>
</div>
<br/>
<br/>
<h3>Sponsors</h3>
<br/>
<div class="sponsors">
<!--div class="sponsor big"><img src="/assets/img/sponsors/sponsor-big-1.png" alt=""></div-->
<a href="http://www.alfresco.com" target="_blank"><div class="sponsor"><img src="/assets/img/sponsors/sponsor-big-2.png" alt=""></div></a>
<a href="http://www.keensoft.es/en/" target="_blank"><div class="sponsor"><img src="/assets/img/sponsors/sponsor-big-3.png" alt=""></div></a>
<a href="http://www.itdhq.com" target="_blank"><div class="sponsor"><img src="/assets/img/sponsors/sponsor-big-4.png" alt=""></div></a>
</div>
<!--div class="sponsors">
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor1.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor2.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor3.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor4.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor5.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor6.png" alt=""></div>
</div>
<div class="sponsors">
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor9.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor10.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor1.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor2.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor3.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor4.png" alt=""></div>
</div>
<div class="sponsors">
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor5.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor6.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor7.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor3.png" alt=""></div>
</div>
<div class="sponsors">
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor2.png" alt=""></div>
<div class="sponsor inline"><img src="/assets/img/sponsors/sponsor1.png" alt=""></div>
</div-->
<br />
<br />
<div class="col-sm-12 align-center">
<a href="#" class="btn btn-md" data-modal-link="become-a-sponsor">Become a sponsor</a>
</div>
</div>
</section>
<section id="contacts">
<div class="contacts-wrapper">
<div id="contacts-map" class="map" data-settings="map-settings.json" style="height:560px;"></div>
<div class="container contacts-on-map-container">
<div class="contacts-on-map">
<h3>Location</h3>
<ul class="list">
<li><i class="fa fa-map-marker"></i>Av. de la Cdad. de Soria, 8, 50003 Zaragoza, Spain</li>
<li><i class="fa fa-envelope"></i>[email protected]</li>
<li><a href="/2017/venue/"><strong>Logistics details</strong> <i class="fa fa-chevron-right"></i></li>
</ul>
</div>
</div>
</div>
</section>
<section class="footer">
<div class="container">
<div class="col-md-4">
<div class="widget about-widget">
<h6 class="widget-head">About <span class="highlight">Order of the Bee</span></h6>
<p class="text-alt"><small>Organization of Alfresco community members working to grow the Alfresco ecosystem independent of Alfresco Software, Inc.</small></p>
<p class="text-alt"><small>Our mission is to guarantee the existence of Alfresco Community Edition as a free/libre open source solution for document management.</small></p>
<img src="/assets/img/autograph-143x105.png" alt="autograph">
</div>
</div>
<div class="col-md-4 col-lg-3 col-lg-offset-1">