-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.mobirise
1184 lines (1184 loc) · 125 KB
/
project.mobirise
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
{
"settings": {
"name": "acmbalances",
"currentPage": "index.html",
"theme": {
"name": "mobirise5",
"title": "Mobirise 5",
"styling": {
"primaryColor": "#6592e6",
"secondaryColor": "#ff6666",
"successColor": "#40b0bf",
"infoColor": "#47b5ed",
"warningColor": "#FFE161",
"dangerColor": "#ffffff",
"mainFont": "Jost",
"display1Font": "Jost",
"display1Size": 4.6,
"display2Font": "Jost",
"display2Size": 3,
"display5Font": "Jost",
"display5Size": 2,
"display7Font": "Jost",
"display7Size": 1.2,
"display4Font": "Jost",
"display4Size": 1.1,
"isRoundedButtons": false,
"isGhostButtonBorder": false,
"underlinedLinks": true,
"isAnimatedOnScroll": true,
"isScrollToTopButton": true
},
"additionalSetColors": [
"#f1efef",
"#2e2e2e",
"#545454"
]
},
"path": "@PROJECT_PATH@",
"versionFirst": "5.2.0",
"siteFonts": [
{
"css": "'Jost', sans-serif",
"name": "Jost",
"url": "https://fonts.googleapis.com/css?family=Jost:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i"
}
],
"dppsSwitcher": true,
"spellingSwitch": true,
"witsec-mailform-to": "[email protected]",
"witsec-mailform-from": "[email protected]",
"witsec-mailform-from-them": false,
"witsec-mailform-from-them-replyto": false,
"witsec-mailform-from-name": "Your Name",
"witsec-mailform-from-name-them": false,
"witsec-mailform-from-name-them-field": "{name}",
"witsec-mailform-template": "Hi,\n\nYou have received a new message from your website.\n\n{formdata}\n\nDate: {date}\nRemote IP: {ip}\n\n---\nHave a nice day.",
"witsec-mailform-autorespond-subjectprefix": "Re:",
"witsec-mailform-autorespond-subject": "",
"witsec-mailform-autorespond-template": "Hi {name},\n\nThank you for your message. We'll get back to you as soon as we can.\nHere's the information you sent us:\n\n{formdata}\n\n---\nHave a nice day.",
"witsec-mailform-recaptcha": false,
"witsec-mailform-recaptcha-version": "3",
"witsec-mailform-recaptcha-sitekey": "",
"witsec-mailform-recaptcha-secretkey": "",
"witsec-mailform-recaptcha-score": "0.5",
"witsec-mailform-disable-button": false,
"witsec-mailform": false,
"favicon": "@PROJECT_PATH@/assets/images/acm-logo.png",
"imageResize": false,
"robotsSwitcher": false,
"sitemapSwitcher": false,
"sitemapSwitcherAuto": false,
"siteUrl": false,
"cookiesAlert": false,
"gdpr": false,
"site_lang": "undefined",
"witsec-white-label": true,
"uniqCompNum": 35,
"versionPublish": "5.2.0",
"screenshot": "screenshot.png",
"publishType": "local",
"publishPath": "@PROJECT_PATH@"
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "ACM | BALANCES",
"meta_descr": "The 1st ACM International Workshop on\nBig Data and Machine Learning for Smart Buildings and Cities",
"header_custom": "<!-- Global site tag (gtag.js) - Google Analytics -->\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=G-SL3DC999K7\"></script>\n<script>\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n\n gtag('config', 'G-SL3DC999K7');\n</script>",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"alias": false,
"_styles": {
"& when not (@sticky)": {
".navbar-dropdown": {
"position": "relative !important"
},
"& when (@transparent)": {
".navbar-dropdown": {
"position": "absolute !important"
}
}
},
"& when (@sticky)": {
"z-index": "1000",
"width": "100%",
"& when not (@transparent)": {
"position": "relative",
"min-height": "60px"
},
"nav.navbar": {
"position": "fixed"
}
},
".dropdown-item:before": {
"font-family": "Moririse2 !important",
"content": "\"\\e966\"",
"display": "inline-block",
"width": "0",
"position": "absolute",
"left": "1rem",
"top": "0.5rem",
"margin-right": "0.5rem",
"line-height": "1",
"font-size": "inherit",
"vertical-align": "middle",
"text-align": "center",
"overflow": "hidden",
"transform": "scale(0, 1)",
"transition": "all 0.25s ease-in-out"
},
".dropdown-menu": {
"padding": "0",
"border-radius": "4px",
"box-shadow": "0 1px 3px 0 rgba(0, 0, 0, 0.1)"
},
".dropdown-item": {
"border-bottom": "1px solid #e6e6e6",
"&:hover, &:focus": {
"background": "@primaryColor !important",
"color": "white !important"
},
"&:first-child": {
"border-top-left-radius": "4px",
"border-top-right-radius": "4px"
},
"&:last-child": {
"border-bottom": "none",
"border-bottom-left-radius": "4px",
"border-bottom-right-radius": "4px"
}
},
".nav-dropdown .link": {
"padding": "0 0.3em !important",
"margin": "0.667em 1em !important"
},
".nav-dropdown .link.dropdown-toggle::after": {
"margin-left": "0.5rem",
"margin-top": "0.2rem"
},
".nav-link": {
"position": "relative"
},
".container": {
"display": "flex",
"margin": "auto"
},
".iconfont-wrapper": {
"color": "@iconsColor !important",
"font-size": "1.5rem",
"padding-right": "0.5rem"
},
".navbar-caption": {},
".navbar-nav": {},
".dropdown-menu, .navbar.opened": {
"background": "@menuBgColor !important"
},
".nav-item:focus, .nav-link:focus": {
"outline": "none"
},
".dropdown .dropdown-menu .dropdown-item": {
"width": "auto",
"transition": "all 0.25s ease-in-out",
"&::after": {
"right": "0.5rem"
},
".mbr-iconfont": {
"margin-right": "0.5rem",
"vertical-align": "sub",
"&:before": {
"display": "inline-block",
"transform": "scale(1, 1)",
"transition": "all 0.25s ease-in-out"
}
}
},
".collapsed": {
".dropdown-menu .dropdown-item:before": {
"display": "none"
},
".dropdown .dropdown-menu .dropdown-item": {
"padding": "0.235em 1.5em 0.235em 1.5em !important",
"transition": "none",
"margin": "0 !important"
}
},
".navbar": {
"min-height": "70px",
"transition": "all 0.3s",
"border-bottom": "1px solid transparent",
"&:not(.navbar-short)": {},
"& when not (@transparent)": {
"box-shadow": "0 1px 3px 0 rgba(0, 0, 0, 0.1)",
"background": "@menuBgColor"
},
"& when (@transparent)": {
"position": "absolute",
"background": "rgba(red(@menuBgColor), green(@menuBgColor), blue(@menuBgColor), @opacity)"
},
"&.opened": {
"transition": "all 0.3s"
},
".dropdown-item": {
"padding": "0.5rem 1.8rem"
},
".navbar-logo img": {
"width": "auto"
},
".navbar-collapse": {
"justify-content": "flex-end",
"z-index": "1"
},
"&.collapsed": {
"justify-content": "center",
".nav-item .nav-link::before": {
"display": "none"
},
"&.opened": {
".dropdown-menu": {
"top": "0"
},
"@media (min-width: 992px)": {
"&:not(.navbar-short) .navbar-collapse when (@showLogo)": {
"max-height": "~\"calc(98.5vh - @{logoSize}rem)\""
}
}
},
".dropdown-menu": {
".dropdown-submenu": {
"left": "0 !important"
},
".dropdown-item:after": {
"right": "auto"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]:after": {
"margin-left": "0.5rem",
"margin-top": "0.2rem",
"border-top": "0.35em solid",
"border-right": "0.35em solid transparent",
"border-left": "0.35em solid transparent",
"border-bottom": "0",
"top": "41%"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": "0.25rem 1.5rem",
"text-align": "center"
},
".icons-menu": {
"padding-left": "0",
"padding-right": "0",
"padding-top": "0.5rem",
"padding-bottom": "0.5rem"
}
},
"@media (max-width: 991px)": {
".nav-item .nav-link::before": {
"display": "none"
},
"&.opened": {
".dropdown-menu": {
"top": "0"
}
},
".dropdown-menu": {
".dropdown-submenu": {
"left": "0 !important"
},
".dropdown-item:after": {
"right": "auto"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]:after": {
"margin-left": "0.5rem",
"margin-top": "0.2rem",
"border-top": "0.35em solid",
"border-right": "0.35em solid transparent",
"border-left": "0.35em solid transparent",
"border-bottom": "0",
"top": "40%"
}
},
".navbar-logo": {
"img": {
"height": "3rem !important"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": "0.25rem 1.5rem !important",
"text-align": "center"
},
".navbar-brand": {
"flex-shrink": "initial",
"flex-basis": "auto",
"word-break": "break-word",
"padding-right": "2rem"
},
".navbar-toggler": {
"flex-basis": "auto"
},
".icons-menu": {
"padding-left": "0",
"padding-top": "0.5rem",
"padding-bottom": "0.5rem"
}
},
"&.navbar-short": {
"min-height": "60px",
".navbar-logo": {
"img": {
"height": "2.5rem !important"
}
},
".navbar-brand": {
"min-height": "60px",
"padding": "0"
}
}
},
".navbar-brand": {
"min-height": "70px",
"flex-shrink": "0",
"align-items": "center",
"margin-right": "0",
"padding": "0",
"transition": "all 0.3s",
"word-break": "break-word",
"z-index": "1",
".navbar-caption": {
"line-height": "inherit !important"
},
".navbar-logo a": {
"outline": "none"
}
},
".dropdown-item.active, .dropdown-item:active": {
"background-color": "transparent"
},
".navbar-expand-lg .navbar-nav .nav-link": {
"padding": "0"
},
".nav-dropdown .link.dropdown-toggle": {
"margin-right": "1.667em",
"&[aria-expanded=\"true\"]": {
"margin-right": "0",
"padding": "0.667em 1.667em"
}
},
".navbar.navbar-expand-lg .dropdown": {
".dropdown-menu": {
"background": "@menuBgColor",
".dropdown-submenu": {
"margin": "0",
"left": "100%"
}
}
},
".navbar .dropdown.open > .dropdown-menu": {
"display": "block"
},
"ul.navbar-nav": {
"flex-wrap": "wrap"
},
".navbar-buttons": {
"text-align": "center",
"min-width": "170px"
},
"button.navbar-toggler": {
"outline": "none",
"width": "31px",
"height": "20px",
"cursor": "pointer",
"transition": "all 0.2s",
"position": "relative",
"align-self": "center",
".hamburger span": {
"position": "absolute",
"right": "0",
"width": "30px",
"height": "2px",
"border-right": "5px",
"background-color": "@hamburgerColor",
"&:nth-child(1)": {
"top": "0",
"transition": "all 0.2s"
},
"&:nth-child(2)": {
"top": "8px",
"transition": "all 0.15s"
},
"&:nth-child(3)": {
"top": "8px",
"transition": "all 0.15s"
},
"&:nth-child(4)": {
"top": "16px",
"transition": "all 0.2s"
}
}
},
"nav.opened .hamburger span": {
"&:nth-child(1)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all 0.2s"
},
"&:nth-child(2)": {
"transform": "rotate(45deg)",
"transition": "all 0.25s"
},
"&:nth-child(3)": {
"transform": "rotate(-45deg)",
"transition": "all 0.25s"
},
"&:nth-child(4)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all 0.2s"
}
},
".navbar-dropdown": {
"padding": "0 1rem",
"& when (@sticky)": {
"position": "fixed"
}
},
"a.nav-link": {
"display": "flex",
"align-items": "center",
"justify-content": "center"
},
".icons-menu": {
"flex-wrap": "nowrap",
"display": "flex",
"justify-content": "center",
"padding-left": "1rem",
"padding-right": "1rem",
"padding-top": "0.3rem",
"text-align": "center"
},
"@media screen and (~'-ms-high-contrast: active'), (~'-ms-high-contrast: none')": {
".navbar": {
"height": "70px",
"&.opened": {
"height": "auto"
}
},
".nav-item .nav-link:hover::before": {
"width": "175%",
"max-width": "calc(100% ~\"+\" 2rem)",
"left": "-1rem"
}
}
},
"_name": "menu2",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"menu menu2\" group=\"Menu\" plugins=\"DropDown, TouchSwipe\" always-top global once=\"menu\" not-draggable position-absolute>\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" name=\"fullWidth\" title=\"Full Width\" checked>\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Logo\" name=\"showLogo\">\n <input type=\"range\" title=\"Logo Size\" inline name=\"logoSize\" min=\"3\" max=\"8\" step=\"0.1\" value=\"3\" condition=\"showLogo\">\n <input type=\"checkbox\" title=\"Brand Name\" name=\"showBrand\" checked>\n <input type=\"checkbox\" title=\"Menu Items\" name=\"showItems\" checked>\n <input type=\"checkbox\" title=\"Icons\" name=\"showIcons\">\n <select title=\"Amount\" name=\"iconsAmount\" condition=\"showIcons\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\" selected>3</option>\n <option value=\"4\">4</option>\n </select>\n <input type=\"color\" title=\"Icons Color\" name=\"iconsColor\" value=\"#000000\" condition=\"showIcons\">\n <input type=\"checkbox\" title=\"Button\" name=\"showButtons\">\n <header>Styles</header>\n <input type=\"checkbox\" title=\"Sticky\" name=\"sticky\" checked>\n <input type=\"checkbox\" title=\"Collapsed\" name=\"collapsed\">\n <input type=\"checkbox\" title=\"Transparent\" name=\"transparent\">\n <input type=\"range\" title=\"Opacity\" name=\"opacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.2\" condition=\"transparent\">\n <input type=\"color\" title=\"Color\" name=\"menuBgColor\" value=\"#2e2e2e\">\n <input type=\"color\" title=\"Hamburger\" name=\"hamburgerColor\" value=\"#fafafa\">\n </mbr-parameters>\n <nav class=\"navbar navbar-dropdown\" mbr-class=\"{'navbar-fixed-top':sticky,\n 'navbar-expand-lg':!collapsed,\n 'collapsed':collapsed}\">\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"navbar-brand\">\n <span mbr-if=\"showLogo\" class=\"navbar-logo\">\n <a href=\"https://mobiri.se\">\n <img src=\"../_images/logo.png\" alt=\"Mobirise\" mbr-style=\"{'height': logoSize + 'rem'}\">\n </a>\n </span>\n <span mbr-if=\"showBrand\" mbr-buttons mbr-theme-style=\"display-7\" class=\"navbar-caption-wrap\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd,-mbrBtnRemove,-iconFont\"><a class=\"navbar-caption text-danger\" data-app-selector=\".navbar-caption\" href=\"index.html\" data-app-placeholder=\"Type Text\">ACM | BALANCES</a></span>\n </div>\n <button class=\"navbar-toggler\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarSupportedContent\" aria-controls=\"navbarNavAltMarkup\" aria-expanded=\"false\" aria-label=\"Toggle navigation\" mbr-if=\"showItems || showIcons || showButtons\">\n <div class=\"hamburger\">\n <span></span>\n <span></span>\n <span></span>\n <span></span>\n </div>\n </button>\n <div class=\"collapse navbar-collapse\" id=\"navbarSupportedContent\" mbr-if=\"showItems || showIcons || showButtons\">\n <ul mbr-menu class=\"navbar-nav nav-dropdown\" mbr-theme-style=\"display-4\" mbr-if=\"showItems\" mbr-class=\"{'nav-right': !showButtons,'navbar-nav-top-padding': isPublish && !showBrand && !showLogo}\"><li class=\"nav-item\"><a class=\"nav-link link text-danger\" href=\"index.html#Content-About\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">\n ABOUT</a></li>\n <li class=\"nav-item\"><a class=\"nav-link link text-danger\" href=\"index.html#Content-ImportantDate\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">IMPORTANT DATES</a></li><li class=\"nav-item\"><a class=\"nav-link link text-danger\" href=\"index.html#Content-CFP\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">CALL FOR PAPERS</a></li>\n <li class=\"nav-item\"><a class=\"nav-link link text-danger\" href=\"index.html#Content-Program\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">PROGRAM</a>\n </li><li class=\"nav-item\"><a class=\"nav-link link text-danger text-primary\" href=\"index.html#Content-Speaker\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">SPEAKER</a></li><li class=\"nav-item\"><a class=\"nav-link link text-danger\" href=\"index.html#content-organization\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\">ORGANIZATION</a></li></ul>\n <div class=\"icons-menu\" mbr-if=\"showIcons\">\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-facebook socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\" mbr-if=\"iconsAmount > 1\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-twitter socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\" mbr-if=\"iconsAmount > 2\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-instagram socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\" mbr-if=\"iconsAmount > 3\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-linkedin socicon\"></span>\n </a>\n </div>\n <div mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" class=\"navbar-buttons mbr-section-btn\"><a class=\"btn btn-primary\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">\n Download Now</a></div>\n </div>\n </div>\n </nav>\n</section>",
"_cid": "sBnpsLHxt0",
"_anchor": "menu2-1",
"_protectedParams": [],
"_global": true,
"_once": "menu",
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
}
},
"_name": "header6",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"header6\" group=\"Headers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{\n 'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\" checked>\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\" checked>\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n\n <input type=\"range\" inline name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"10\" step=\"1\">\n <select title=\"Align\" name=\"contentAlign\">\n <option value>Left</option>\n <option value=\"justify-content-center\" selected>Center</option>\n <option value=\"justify-content-end\">Right</option>\n </select>\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubitle\" checked>\n <input type=\"checkbox\" title=\"Text\" name=\"showText\">\n <input type=\"checkbox\" title=\"Buttons\" name=\"showButtons\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"@PROJECT_PATH@/assets/images/jimmy-woo-BOSTON-unsplash.jpg\" selected>\n <input type=\"color\" title=\"Color\" value=\"#4479d9\">\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#353535\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.2\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" opacity=\"{{overlayOpacity}}\" bg-color=\"{{overlayColor}}\"></div>\n\n <div class=\"align-center\" mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row {{contentAlign}}\">\n <div class=\"col-12 col-lg-{{textWidth}}\">\n <h1 class=\"mbr-section-title mbr-fonts-style mbr-white mb-3\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\"><b><br></b><b>The 1<sup>st</sup> ACM International Workshop on \n</b><div><b>Big Data and Machine Learning for Smart Buildings and Cities</b></div><div><b><br></b></div></h1>\n <h2 class=\"mbr-section-subtitle mbr-fonts-style mbr-white mb-3\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-5\" mbr-if=\"showSubitle\">In conjunction with <br>ACM BuildSys 2021, Nov. 17-18, 2021\n<div>Coimbra, Portugal\n</div><div><br><br><br><br><br><br></div></h2>\n <p class=\"mbr-text mbr-white mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .mbr-section-btn\"></p>\n <div mbr-buttons mbr-theme-style=\"display-4\" class=\"mbr-section-btn mt-3\" mbr-if=\"showButtons\"><a class=\"btn btn-danger\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">Create Your Website!</a></div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sBnw6FAg87",
"_anchor": "header6-3",
"_PHPplaceholders": [],
"_JSplaceholders": [],
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"background-color": "@bgColor",
".mbr-section-subtitle": {
"text-align": "center"
},
".mbr-text": {
"text-align": "left"
}
},
"_name": "content5",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"content5\" group=\"Content\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\">\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"10\" step=\"1\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\" checked>\n <header>Background</header>\n <input type=\"color\" title=\"Color\" name=\"bgColor\" value=\"#fafafa\">\n </mbr-parameters>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-md-12 col-lg-{{textWidth}}\">\n <h3 class=\"mbr-section-title mbr-fonts-style mb-4\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\">\n <b>Article Title</b>\n </h3>\n <h4 class=\"mbr-section-subtitle mbr-fonts-style mb-4\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-2\"><b>Welcome to ACM BALANCES 2021</b></h4>\n <p class=\"mbr-text mbr-fonts-style\" data-app-selector=\".mbr-text\" mbr-theme-style=\"display-7\">The proliferation of urban sensing, IoT, and big data in buildings, cities, and urban areas provides unprecedented opportunities for a deeper understanding of occupant behavior, transportation, and energy and water usage patterns. However, utilizing the existing data sources and modeling methods in building science to model urban scale occupant behaviors can be pretty challenging. Therefore, technological progress is needed to unlock its full potential. In order to fulfill the latter task, this workshop focuses on the methodologies for big urban and building data collection, analytics, modeling, and real-world technology deployment. Additionally, a spotlight will be put on the ongoing project <a href=\"https://annex79.iea-ebc.org\" class=\"text-primary\" target=\"_blank\">IEA EBC Annex 79</a> Subtask 2: Data-driven occupant modeling strategies and digital tools.<br><br>The workshop aims to open up discussions on 1) challenges of the current modeling approaches in building science, 2) big data modeling paradigms that could be applicable in building science, urban infrastructure data modeling, 3) requirements on the data collection infrastructure required for increasing the volume of data collection, and 4) future research directions using urban big data. An important part of the workshop will be dedicated to accelerating the open-world deployment of developed technologies. For instance, how can the guidelines, model benchmarking, and standardization unlock the potential of the big data, buildings, urban scale occupant behavior modeling and energy consumption data.<br><br>BALANCES'21 will be held in conjunction with <a href=\"http://buildsys.acm.org/2021/\" class=\"text-primary\" target=\"_blank\"><b>ACM BuildSys'21</b></a><br><br></p>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sBnycRFU73",
"_anchor": "Content-About",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)"
},
".timelines-container": {
"display": "flex",
"flex-wrap": "wrap",
"& when (@reverseTimeline)": {
"flex-direction": "column-reverse"
}
},
".timeline-element": {
"position": "relative"
},
".image-wrapper img": {
"width": "100%",
"object-fit": "cover"
},
".iconBackground": {
"position": "absolute",
"left": "33.33%",
"width": "20px",
"height": "20px",
"border-radius": "50%",
"border": "2px solid @lineColor",
"top": "30px",
"margin-left": "-9px"
},
".separline:before": {
"top": "50px",
"bottom": "0",
"position": "absolute",
"content": "\"\"",
"width": "2px",
"background-color": "@lineColor",
"left": "33.33%",
"height": "calc(100% ~\"+\" 30px)"
},
"@media (max-width: 767px)": {
".iconBackground": {
"left": "15px !important"
},
".separline:before": {
"left": "15px !important"
}
},
".mbr-section-title, .mbr-section-subtitle": {
"text-align": "center"
},
".time-line-date-content": {
"@media (max-width: 767px)": {
"margin-left": "1rem",
".mbr-timeline-date": {
"text-align": "center"
}
},
"@media (min-width: 768px)": {
"margin-right": "1rem",
".mbr-timeline-date": {
"text-align": "right"
}
}
},
".timeline-text-content": {
"margin-left": "2rem"
},
".reverseTimeline": {
"display": "flex",
"flex-direction": "column-reverse"
},
".mbr-timeline-date": {
"text-align": "left",
"color": "#232323"
},
".mbr-timeline-title": {
"text-align": "left"
},
".mbr-section-title": {
"text-align": "center"
},
".mbr-section-subtitle": {
"text-align": "center"
}
},
"_name": "timeline2",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"timeline2\" group=\"Timelines\" data-bg-video=\"{{bg.type == 'video' &&bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" name=\"fullWidth\" title=\"Full Width\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"5\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"10\">\n <input type=\"checkbox\" title=\"Reverse Timeline\" name=\"reverseTimeline\" checked>\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Dates\" name=\"showDates\" checked>\n <input type=\"checkbox\" title=\"Images\" name=\"showImages\">\n <select title=\"Count\" name=\"timelinesAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n <option value=\"5\" selected>5</option>\n <option value=\"6\">6</option>\n <option value=\"7\">7</option>\n <option value=\"8\">8</option>\n <option value=\"9\">9</option>\n <option value=\"10\">10</option>\n <option value=\"11\">11</option>\n <option value=\"12\">12</option>\n </select>\n <input type=\"color\" name=\"lineColor\" title=\"Color\" value=\"#6592e6\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"@PROJECT_PATH@/assets/images/mbr.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#f1efef\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay &&bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"overlay &&bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay &&bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"mbr-section-head\" mbr-if=\"showTitle || showSubtitle\">\n <h3 class=\"mbr-section-title mbr-fonts-style align-center mb-0\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\"><b>Important Dates</b></h3>\n <h4 class=\"mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">(UTC-12:00)</h4>\n </div>\n <div class=\"timelines-container mt-4\">\n <div class=\"row timeline-element separline mb-5\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">Nov. 17-18, 2021</h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">Workshop Day</h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features6.jpg\" alt=\"Mobirise\" title>\n </div>\n \n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>1\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">Oct. 14, 2021</h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">Camera Ready Submission</h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features5.jpg\" alt=\"Mobirise\" title>\n </div>\n \n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>2\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">Sep. 25, 2021</h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">Notification to Authors</h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n \n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>3\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">Sep. 23, 2021</h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">Reviewer Deadline</h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n \n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>4\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">Sep. 18, 2021</h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">Paper Submission</h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n \n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>5\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special actions required.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>6\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Select the theme that suits you. Each theme in the Mobirise site builder contains a set of unique blocks.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>7\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit projects.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>8\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n You don't have to code to create your own site. Select one of available themes in the Mobirise sitebuilder.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>9\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special actions required.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>10\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Select the theme that suits you. Each theme in the Mobirise site builder contains a set of unique blocks.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>11\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"../_images/features/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit projects.\n </p>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sBnyHYCtcz",
"_anchor": "Content-ImportantDate",
"_PHPplaceholders": [],
"_JSplaceholders": [],
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)"
},
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value"
},
"ul": {
"list-style": "none",
"margin": "0",
"padding-left": "2.5rem"
},
"li": {
"position": "relative",
"margin-bottom": "1rem"
},
"ul li::before": {
"position": "absolute",
"left": "-1.6rem",
"content": "\"\\2022\"",
"color": "@iconColor",
"font-weight": "bold",
"font-size": "2rem",
"width": "1.6rem"
},
"H3": {
"text-align": "center"
},
"H4": {
"text-align": "center"
}
},
"_name": "content13",
"_sourceTheme": "mobirise5",
"_customHTML": "<section group=\"Content\" class=\"content13\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{\n 'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"5\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"0\" condition=\"fullScreen == false\">\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"12\" step=\"1\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <select title=\"Amount\" name=\"colAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\" selected>2</option>\n </select>\n <input type=\"color\" name=\"iconColor\" title=\"Color\" value=\"#6592e6\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"@PROJECT_PATH@/assets/images/mbr.jpg\" parallax>\n <input type=\"color\" title=\"Color\" value=\"#fafafa\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.8\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" opacity=\"{{overlayOpacity}}\" bg-color=\"{{overlayColor}}\"></div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-md-12 col-lg-{{textWidth}}\" mbr-if=\"showTitle\">\n <h3 class=\"mbr-section-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">\n <b>Call for Papers</b><br></h3>\n <h4 class=\"mbr-fonts-style mb-4\" mbr-theme-style=\"display-7\">\n The topics include, but are not limited to the following:</h4>\n </div>\n </div>\n <div class=\"row justify-content-center\">\n <div class=\"col-md-12 col-lg-{{textWidth}}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-12 col-lg-6\">\n <ul class=\"list mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".list\" data-multiline mbr-article>\n <li>Machine learning for modeling big data from buildings, cities, and various urban-scale data\n</li><li>AI-driven building automation\n</li><li>Modeling of human mobility in cities\n</li><li>Urban sensing \n</li><li>Data-driven urban scale occupant behavior modeling\n</li><li>Scaling up models to big data and large scale deployment\n</li><li>Model standardization and benchmarking\n</li>\n </ul>\n </div>\n <div class=\"col-12 col-lg-6\" mbr-if=\"colAmount > 1\">\n <ul class=\"list mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".list\" data-multiline mbr-article>\n <li><span style=\"font-size: 1.2rem;\">Fault-free data-driven building operation </span><br></li><li>City-scale model scalability\n</li><li>Urban scale building energy modeling\n</li><li>Outdoor thermal comfort \n</li><li>Big data for Grid-interactive efficient buildings (GEB)\n</li><li>Buildings-to-grid integration \n</li>\n </ul>\n </div>\n </div>\n </div>\n </div>\n \n </div>\n</section>",
"_cid": "sBnA31AkGp",
"_anchor": "Content-CFP",
"_PHPplaceholders": [],
"_JSplaceholders": [],
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"background-color": "@bgColor",
".mbr-section-subtitle": {
"text-align": "center"
},
".mbr-text": {
"text-align": "left"
}
},
"_name": "content5",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"content5\" group=\"Content\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"5\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"5\">\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"10\" step=\"1\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\" checked>\n <header>Background</header>\n <input type=\"color\" title=\"Color\" name=\"bgColor\" value=\"#fafafa\">\n </mbr-parameters>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-md-12 col-lg-{{textWidth}}\">\n <h3 class=\"mbr-section-title mbr-fonts-style mb-4\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\">\n <b>Article Title</b>\n </h3>\n <h4 class=\"mbr-section-subtitle mbr-fonts-style mb-4\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-5\"><b>Submission Guidelines</b></h4>\n\n <p class=\"mbr-text mbr-fonts-style\" data-app-selector=\".mbr-text\" mbr-theme-style=\"display-7\">The workshop will accept the submissions of original work or work in progress. Submitted papers must be unpublished and must not be currently under review for any other publication. Submissions must be full papers, at most 4 single-spaced US Letter (8.5” x 11”) pages, including figures, tables, references and appendices. Submissions for All submissions must use the LaTeX (preferred) or Word styles found <a href=\"https://www.acm.org/publications/proceedings-template\" class=\"text-primary\" target=\"_blank\">here</a>. All submissions must be submitted using the <a href=\"https://acm-balances21.hotcrp.com/\" class=\"text-primary\" target=\"_blank\">submission website</a>. Authors must make a good faith effort to anonymize their submissions by: (1) using the \"anonymous\" option for the class and (2) using \"anonsuppress\" section where appropriate. Papers that do not meet the size, formatting, and anonymization requirements will not be reviewed. <b>Please note that ACM uses 9-pt fonts in all conference proceedings, and the style (both LaTeX and Word) implicitly define the font size to be 9-pt.</b> <br><br>The tentative presentation formats are regular oral presentation (15 minutes) and a spotlight presentation (2 minutes). <br><br>Register through <a href=\"http://buildsys.acm.org/2021/\" class=\"text-primary\" target=\"_blank\"><b>ACM BuildSys 2021</b></a><br></p>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sBQdnIz307",
"_anchor": "content5-l",
"_PHPplaceholders": [],
"_JSplaceholders": [],
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)"
},
".timelines-container": {
"display": "flex",
"flex-wrap": "wrap",
"& when (@reverseTimeline)": {
"flex-direction": "column-reverse"
}
},
".timeline-element": {
"position": "relative"
},
".image-wrapper img": {
"width": "100%",
"object-fit": "cover"
},
".iconBackground": {
"position": "absolute",
"left": "33.33%",
"width": "20px",
"height": "20px",
"border-radius": "50%",
"border": "2px solid @lineColor",
"top": "30px",
"margin-left": "-9px"
},
".separline:before": {
"top": "50px",
"bottom": "0",
"position": "absolute",
"content": "\"\"",
"width": "2px",
"background-color": "@lineColor",
"left": "33.33%",
"height": "calc(100% ~\"+\" 30px)"
},
"@media (max-width: 767px)": {
".iconBackground": {
"left": "15px !important"
},
".separline:before": {
"left": "15px !important"
}
},
".mbr-section-title, .mbr-section-subtitle": {
"text-align": "center"
},
".time-line-date-content": {
"@media (max-width: 767px)": {
"margin-left": "1rem",
".mbr-timeline-date": {
"text-align": "center"
}
},
"@media (min-width: 768px)": {
"margin-right": "1rem",
".mbr-timeline-date": {
"text-align": "right"
}
}
},
".timeline-text-content": {
"margin-left": "2rem"
},
".reverseTimeline": {
"display": "flex",
"flex-direction": "column-reverse"
},
".mbr-timeline-date": {
"text-align": "right"
},
".mbr-timeline-text": {
"text-align": "center"
}
},
"_name": "timeline2",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"timeline2\" group=\"Timelines\" data-bg-video=\"{{bg.type == 'video' &&bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" name=\"fullWidth\" title=\"Full Width\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"5\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"10\">\n <input type=\"checkbox\" title=\"Reverse Timeline\" name=\"reverseTimeline\" checked>\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Dates\" name=\"showDates\" checked>\n <input type=\"checkbox\" title=\"Images\" name=\"showImages\">\n <select title=\"Count\" name=\"timelinesAmount\">\n <option value=\"1\" selected>1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n <option value=\"5\">5</option>\n <option value=\"6\">6</option>\n <option value=\"7\">7</option>\n <option value=\"8\">8</option>\n <option value=\"9\">9</option>\n <option value=\"10\">10</option>\n <option value=\"11\">11</option>\n <option value=\"12\">12</option>\n </select>\n <input type=\"color\" name=\"lineColor\" title=\"Color\" value=\"#6592e6\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"@PROJECT_PATH@/assets/images/mbr.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#f1efef\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay &&bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"overlay &&bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay &&bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"mbr-section-head\" mbr-if=\"showTitle || showSubtitle\">\n <h3 class=\"mbr-section-title mbr-fonts-style align-center mb-0\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\">\n <b>Program</b></h3>\n <h4 class=\"mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2\" mbr-theme-style=\"display-7\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\"><br>Western European Summer Time (UTC+01:00)</h4>\n </div>\n <div class=\"timelines-container mt-4\">\n <div class=\"row timeline-element separline mb-5\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\"><b>TBD</b></h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\"></h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features6.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\"></p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>1\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>Time</b></h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Title</b></h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features5.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Subtitle\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>2\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>Time</b></h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\"><b>Title</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">Subtitle</p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>3\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>10:00-10:10</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Title</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit projects.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>4\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n You don't have to code to create your own site. Select one of available themes in the Mobirise sitebuilder.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>5\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special actions required.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>6\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Select the theme that suits you. Each theme in the Mobirise site builder contains a set of unique blocks.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>7\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit projects.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>8\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n You don't have to code to create your own site. Select one of available themes in the Mobirise sitebuilder.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>9\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special actions required.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>10\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Select the theme that suits you. Each theme in the Mobirise site builder contains a set of unique blocks.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element separline mb-5\" mbr-if=\"timelinesAmount>11\">\n <div class=\"timeline-date-panel col-12 col-md-4\">\n <div class=\"time-line-date-content\">\n <h4 class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </h4>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-8\">\n <div class=\"timeline-text-content\">\n <h4 class=\"mbr-timeline-title mb-4 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-timeline-title\">\n <b>Introductory Lesson</b>\n </h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/features4.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-timeline-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit projects.\n </p>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "Content-Program",
"_isUserblock": true,
"_cid": "sBnEonYIaV",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@fullWidth)": {
".text-wrapper": {
"padding": "1rem"
}
},
"@media (max-width: 991px)": {
".image-wrapper": {
"margin-bottom": "1rem"
}
},
"img": {
"width": "100%"
},
"@media (min-width: 992px)": {
".text-wrapper": {
"padding": "2rem"
}
},
".mbr-text": {
"text-align": "left"
}
},
"_name": "image1",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"image1\" group=\"Images & Videos\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"2\" condition=\"fullScreen == false\">\n <input type=\"range\" name=\"textWidth\" title=\"Image\" min=\"4\" max=\"8\" step=\"1\" value=\"4\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Description\" name=\"showDescription\" checked>\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background1.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#fafafa\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div mbr-class=\"{'container': !fullWidth}\">\n <h3 class=\"mbr-section-title mbr-fonts-style align-center mb-0 display-2\"><b>Keynote Speaker </b><br><b><br></b></h3>\n <div class=\"row align-items-center\">\n <div class=\"col-12 col-lg-{{textWidth}}\">\n <div class=\"image-wrapper\">\n <img src=\"@PROJECT_PATH@/assets/images/matthias-berning.jpg\" alt>\n <p class=\"mbr-description mbr-fonts-style pt-2 align-center\" mbr-theme-style=\"display-5\" mbr-if=\"showDescription\" data-app-selector=\".mbr-description\"><b>Matthias Berning</b></p>\n </div>\n </div>\n <div class=\"col-12\" mbr-class=\"{'col-lg' : !fullWidth, 'col-lg-4' : fullWidth && textWidth >= 6, 'col-lg-6' : fullWidth && textWidth <= 5}\">\n <div class=\"text-wrapper\">\n <h3 class=\"mbr-section-title mbr-fonts-style mb-3\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\"></h3>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\"><b>Title:</b> Challenges in Building Ecosystems – Enabling Data-Driven Services<b>\n</b><br><br><b>Abstract</b>: Today’s buildings need to meet a multitude of demands from different stakeholders, to provide sustainable, comfortable, and cost-efficient working, living and recreational spaces. To reach this goal, they need to become Smart Buildings, aware of their occupants and their environment, acting proactively and transparently. Given the fragmented state of the building industry, crucial data is currently stored in silos, underutilized and inaccessible for digital innovators. An open ecosystem is needed to connect all players and address common challenges of data representation, privacy, security, quality, and market access.\n<br><br><b>Bio</b>: Dr. Matthias Berning is Senior Scientist and Project Manager at ABB corporate research in Germany. He is part of the Sensor Solutions team and his research interests include distributed sensing and information processing in different domains, including building automation. He started to work on wireless sensor networks during his studies at TU Kaiserslautern and continued his research in the field of pervasive computing during his PhD in the TECO research group at the Karlsruhe Institute of Technology.</p>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sMrBEe5aaJ",
"_anchor": "Content-Speaker",
"_PHPplaceholders": [],
"_JSplaceholders": [],
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@fullWidth)": {
".text-wrapper": {
"padding": "1rem"
}
},
"@media (max-width: 991px)": {
".image-wrapper": {
"margin-bottom": "1rem"
}
},
".row": {
"flex-direction": "row-reverse"
},
"img": {
"width": "100%"
},
"@media (min-width: 992px)": {
".text-wrapper": {
"padding": "2rem"
}
},
".mbr-text": {
"text-align": "left"
}
},
"_name": "image2",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"image2\" group=\"Images & Videos\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"2\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" name=\"textWidth\" title=\"Image\" min=\"4\" max=\"8\" step=\"1\" value=\"4\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Description\" name=\"showDescription\" checked>\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background1.jpg\" parallax>\n <input type=\"color\" title=\"Color\" value=\"#f1efef\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div mbr-class=\"{'container': !fullWidth}\">\n <div class=\"row align-items-center\">\n <div class=\"col-12 col-lg-{{textWidth}}\">\n <div class=\"image-wrapper\">\n <img src=\"@PROJECT_PATH@/assets/images/panagiota-karava.png\" alt>\n <p class=\"mbr-description mbr-fonts-style mt-2 align-center\" mbr-theme-style=\"display-5\" mbr-if=\"showDescription\" data-app-selector=\".mbr-description\"><b>Panagiota Karava</b></p>\n </div>\n </div>\n <div class=\"col-12\" mbr-class=\"{'col-lg' : !fullWidth, 'col-lg-4' : fullWidth && textWidth >= 6, 'col-lg-6' : fullWidth && textWidth <= 5}\">\n <div class=\"text-wrapper\">\n <h3 class=\"mbr-section-title mbr-fonts-style mb-3\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\"></h3>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\"><b>Title</b>: User-interactive systems for smart buildings and connected communities<br><br><b>Abstract</b>: The development of smart devices and machine learning algorithms provides unique opportunities to revolutionize energy and comfort management systems for buildings by making them user-interactive. The first part of this presentation will introduce a new paradigm for self-tuned comfort delivery for intelligent thermal environments and will discuss insights from its field deployment in an occupied open-plan office building. The second part will introduce a software platform for smart and connected (S&C) energy-aware residential communities, the SmartEnergy (SmartE) app, and will present findings from a 4-year field study on real-world S&C technology deployment in 100 households. <br><br><b>Bio</b>: Panagiota Karava currently is the Jack and Kay Hockema Professor in Civil Engineering at Purdue and is affiliated with both Ray W. Herrick Laboratories and the Center for High Performance Buildings (CHPB). Dr. Karava joined Purdue in 2009 as founding member of the Architectural Engineering Program within the School of Civil Engineering. Since then, she has played a leading role in establishing the new program as well as developing new teaching and research infrastructure. Dr. Karava’ research interests are broadly related to high performance buildings and smart building technology. She has authored more than 100 journal and conference publications, and has a track-record in leading ambitious and high-impact research partnerships and interdisciplinary teams. She is the recipient of the 2014 Wansik Research Excellence Award at Purdue and the New Investigator Award from ASHRAE (2013) and serves as an editor in Energy and Buildings journal. </p>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sMrCkEwQR6",
"_anchor": "image2-x",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)"
},
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value"
},
"ul": {
"list-style": "none",
"margin": "0",
"padding-left": "2.5rem"
},
"li": {
"position": "relative",
"margin-bottom": "1rem"
},
"ul li::before": {
"position": "absolute",
"left": "-1.6rem",
"content": "\"\\2022\"",
"color": "@iconColor",
"font-weight": "bold",
"font-size": "2rem",
"width": "1.6rem"
},
"H3": {
"text-align": "center"
},
"H4": {
"text-align": "center"
},
".list": {
"text-align": "left"
}
},
"_name": "content13",
"_sourceTheme": "mobirise5",
"_customHTML": "<section group=\"Content\" class=\"content13\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{\n 'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"7\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"4\" condition=\"fullScreen == false\">\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"12\" step=\"1\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <select title=\"Amount\" name=\"colAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\" selected>2</option>\n </select>\n <input type=\"color\" name=\"iconColor\" title=\"Color\" value=\"#6592e6\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"@PROJECT_PATH@/assets/images/mbr.jpg\" parallax>\n <input type=\"color\" title=\"Color\" value=\"#fafafa\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.8\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" opacity=\"{{overlayOpacity}}\" bg-color=\"{{overlayColor}}\"></div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-md-12 col-lg-{{textWidth}}\" mbr-if=\"showTitle\">\n <h3 class=\"mbr-section-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\"><b>Organization</b></h3>\n <br><h4 class=\"mbr-section-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\">Technical Program Committee</h4>\n </div>\n </div>\n <div class=\"row justify-content-center\">\n <div class=\"col-md-12 col-lg-{{textWidth}}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-12 col-lg-6\">\n <ul class=\"list mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".list\" data-multiline mbr-article>\n <li><a href=\"https://fbta.ieb.kit.edu/mitarbeiter_85.php\" class=\"text-primary\" target=\"_blank\"><b>Andreas Wagner</b></a><br>Karlsruhe Institute of Technology, Germany</li><li><a href=\"https://carleton.ca/cee/people/gunay-h-burak/\" class=\"text-primary\" target=\"_blank\"><b>Burak Gunay</b></a><br>Carleton University, Canada</li><li><a href=\"https://discovery.nus.edu.sg/10622-clayton-carl-miller\" class=\"text-primary\" target=\"_blank\"><b>Clayton Miller</b></a><br>National University of Singapore</li><li><a href=\"https://www.ku.ac.ae/academics/college-of-engineering/department/department-of-industrial-and-systems-engineering/people/dr-elie-azar\" class=\"text-primary\" target=\"_blank\"><b>Elie Azar</b></a><br>Khalifa University, UAE</li><li><a href=\"https://fsalim.github.io/\" class=\"text-primary\" target=\"_blank\"><b>Flora Salim</b></a><br>Royal Melbourne Institute of Technology, Australia</li><li><a href=\"https://eta.lbl.gov/people/han-li\" class=\"text-primary\" target=\"_blank\"><b>Han Li</b>\n</a><br>Lawrence Berkeley National Laboratory, USA</li><li><a href=\"https://www.pnnl.gov/people/jan-drgona\" class=\"text-primary\" target=\"_blank\"><b>Jan Drgona\n</b></a><br>Pacific Northwest National Laboratory, USA</li>\n </ul>\n </div>\n <div class=\"col-12 col-lg-6\" mbr-if=\"colAmount > 1\">\n <ul class=\"list mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".list\" data-multiline mbr-article>\n <li><b style=\"font-size: 1.2rem; background-color: rgb(250, 250, 250);\"><a href=\"https://www.ornl.gov/staff-profile/joshua-r-new\" class=\"text-primary\" target=\"_blank\" style=\"font-size: 1.2rem; background-color: rgb(250, 250, 250);\"><b>Joshua New</b></a><br></b>Oak Ridge National Laboratory, USA</li><li><a href=\"https://carleton.ca/cee/people/liam-obrien/\" class=\"text-primary\" target=\"_blank\"><b>Liam O’Brien</b></a><br>Carleton University, Canada</li><li><a href=\"https://intra.ece.ucr.edu/~nyu/\" class=\"text-primary\" target=\"_blank\"><b>Nanpeng Yu</b></a><br>Unviersity of California, Riverside, USA</li><li>\n</li><li><a href=\"https://www.cmu.edu/cee/people/faculty/tang.html\" class=\"text-primary\" target=\"_blank\"><b>Pingbo Tang</b></a><br>Carnegie Mellon University, USA</li><li><a href=\"https://engineering.tamu.edu/mechanical/profiles/oneill-zheng.html\" class=\"text-primary\" target=\"_blank\"><b>Zheng O'Neill</b></a><br>Texas A&M University, USA</li><li><a href=\"https://www.anl.gov/profile/zhi-zhou\" class=\"text-primary\" target=\"_blank\"><b>Zhi Zhou</b></a><br>Argonne National Laboratory, USA</li><li><a href=\"https://www.mccormick.northwestern.edu/research-faculty/directory/profiles/zhu-qi.html\" class=\"text-primary\" target=\"_blank\"><b>Qi Zhu</b></a><br>Northwestern University, USA</li>\n </ul>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_JSplaceholders": [],
"_PHPplaceholders": [],
"_anchor": "content-organization",
"_isUserblock": true,
"_cid": "sBnDImP0cX",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)",
"& when (@overlay)": {
".mbr-overlay": {
"background": "@overlayColor",
"opacity": "@overlayOpacity"
}
}
},
"img, .item-img": {
"& when (@autoSize)": {
"height": "100%",
"object-fit": "cover",
"& when (@showCardTitle)": {
"height": "(@imageHeight * 100px)",
"object-fit": "cover"
},
"& when (@showCardSubtitle)": {
"height": "(@imageHeight * 100px)",
"object-fit": "cover"
},