-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.mobirise
1908 lines (1908 loc) · 212 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": "PyRuhr",
"currentPage": "index.html",
"theme": {
"name": "mobirise5",
"title": "Mobirise 5",
"styling": {
"primaryColor": "#6592e6",
"secondaryColor": "#ff6666",
"successColor": "#40b0bf",
"infoColor": "#47b5ed",
"warningColor": "#FFE161",
"dangerColor": "#ff9966",
"mainFont": "Jost",
"display1Font": "Jost",
"display1Size": 4.6,
"display2Font": "Jost",
"display2Size": 3,
"display5Font": "Jost",
"display5Size": 2.2,
"display7Font": "Jost",
"display7Size": 1.2,
"display4Font": "Jost",
"display4Size": 1.1,
"isRoundedButtons": false,
"isGhostButtonBorder": false,
"underlinedLinks": false,
"isAnimatedOnScroll": false,
"isScrollToTopButton": false
},
"additionalSetColors": []
},
"path": "@PROJECT_PATH@",
"versionFirst": "5.0.2",
"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"
}
],
"uniqCompNum": 77,
"versionPublish": "5.3.0",
"imageResize": true,
"screenshot": "screenshot.png",
"favicon": false,
"mbrsiteDomain": "gm9s0taadi",
"robotsSwitcher": false,
"sitemapSwitcher": false,
"sitemapSwitcherAuto": false,
"siteUrl": false,
"cookiesAlert": false,
"gdpr": false
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "Home",
"meta_descr": "pyruhr AI",
"header_custom": "",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"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": "header5",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"header5\" 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\">\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=\"5\" condition=\"fullScreen == false\">\n\n <input type=\"range\" inline name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"7\" step=\"1\">\n <select title=\"Align\" name=\"contentAlign\">\n <option value>Left</option>\n <option value=\"justify-content-center\">Center</option>\n <option value=\"justify-content-end\" selected>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\">\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Buttons\" name=\"showButtons\" checked>\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background9.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#ffffff\">\n <input type=\"video\" title=\"Video\" value=\"https://youtu.be/Cx5aNwnZYDc?t=10\" selected>\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=\"#000000\" 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'\" opacity=\"{{overlayOpacity}}\" bg-color=\"{{overlayColor}}\"></div>\n\n <div class 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-1\" mbr-if=\"showTitle\"><b>PyRuhr</b></h1>\n <h2 class=\"mbr-section-subtitle mbr-fonts-style mbr-white mb-3\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-2\" mbr-if=\"showSubitle\">Header Subtitle</h2>\n <p class=\"mbr-text mbr-fonts-style mbr-white\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .mbr-section-btn\">\n Pemanfaatan teknologi AI dan ML untuk kemaslahatan</p>\n <div mbr-buttons mbr-theme-style=\"display-7\" class=\"mbr-section-btn mt-3\" mbr-if=\"showButtons\"><a class=\"btn btn-warning\" href=\"https://rekam.pyruhr.com\" data-app-placeholder=\"Type Text\">Download</a></div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "stV0p3ultp",
"_anchor": "header5-1i",
"_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"
}
}
},
"_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=\"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 <input type=\"range\" name=\"textWidth\" title=\"Image\" min=\"4\" max=\"8\" step=\"1\" value=\"6\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Description\" name=\"showDescription\">\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=\"#ffffff\" 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/pexels-lenin-estrada-2103864-1076x1614.jpg\" alt=\"Mobirise\">\n <p class=\"mbr-description mbr-fonts-style mt-2 align-center\" mbr-theme-style=\"display-4\" mbr-if=\"showDescription\" data-app-selector=\".mbr-description\">\n Image Description</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\">\n <b>Tentang kami</b></h3>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">PyRuhr adalah komunitas pencinta, penggiat, dan tenaga ahli profesional di bidang IT. Komunitas ini diinisiasi oleh para mahasiswa, alumni, dan tenaga ahli di bidang IT asal Indonesia yang berada di daerah Ruhrgebiet Jerman. Meskipun sebagian alumni lulusan Jerman yang tergabung dalam komunitas ini telah kembali ke tanah air, toh tidak melunturkan semangatnya untuk tetap melangkah bersama PyRuhr. \n<br>\n<br>Komunitas ini berawal dari sebuah ide untuk mendalami pemograman bernama Python oleh sejumlah diaspora Indonesia di Jerman, khususnya di Ruhrgebiet, dan dari situ pula lah nama PyRuhr berasal. Program sharing men-sharing ilmu pun dijalani oleh komunitas ini secara rutin setiap minggu dengan pembahasan di sekitar IT, aplikasi, implementasi Python di berbagai industri, dan lain sebagainya. <br></p>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "ss22KUT5Sw",
"_anchor": "image2-14",
"_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)"
},
".mbr-iconfont": {
"font-size": "1.4rem !important",
"font-family": "'Moririse2' !important",
"color": "@primaryColor",
"margin-left": "1rem"
},
".panel-group": {
"border": "none"
},
".panel-title": {
"display": "flex",
"align-items": "center",
"justify-content": "space-between"
},
".panel-body, .card-header": {
"padding": "1rem 0"
},
".panel-title-edit": {
"color": "#000000"
},
".card .card-header": {
"background-color": "transparent",
"margin-bottom": "0"
}
},
"_name": "content16",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"content16\" group=\"Content\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background':bg.parallax}\" plugins=\"mbr-switch-arrow, mobirise-icons2\">\n\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=\"12\" step=\"1\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\">\n <select title=\"Amount\" name=\"cardAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\" selected>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 </select>\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=\"#98dee8\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" checked condition=\"bg.type !== 'color'\">\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.9\" 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=\"row justify-content-center\">\n <div class=\"col-12 col-md-{{textWidth}}\">\n <div class=\"mbr-section-head align-center mb-4\" mbr-if=\"showTitle || showSubtitle\">\n <h3 class=\"mbr-section-title mb-0 mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">\n <b>Visi dan misi</b></h3>\n <h4 class=\"mbr-section-subtitle mb-0 mt-2 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\">\n Accordion Subtitle</h4>\n </div>\n <div id=\"bootstrap-accordion\" class=\"panel-group accordionStyles accordion\" role=\"tablist\" aria-multiselectable=\"true\">\n <div class=\"card mb-3\">\n <div class=\"card-header\" role=\"tab\" id=\"headingOne\">\n <a role=\"button\" class=\"panel-title collapsed\" data-toggle=\"collapse\" data-core href=\"#collapse1\" aria-expanded=\"false\" aria-controls=\"collapse1\">\n <h6 class=\"panel-title-edit mbr-fonts-style mb-0\" mbr-theme-style=\"display-5\" data-app-selector=\".panel-title-edit\"><b>Visi</b>\n </h6>\n <span class=\"sign mbr-iconfont mbri-arrow-down\"></span>\n </a>\n </div>\n <div id=\"collapse1\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingOne\" data-parent=\"#accordion\">\n <div class=\"panel-body\">\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">Kami memiliki cita-cita untuk menjadi komunitas yang memberikan banyak manfaat terhadap umat manusia melalui pengembangan teknologi digital. </p>\n </div>\n </div>\n </div>\n <div class=\"card mb-3\" mbr-if=\"cardAmount > 1\">\n <div class=\"card-header\" role=\"tab\" id=\"headingOne\">\n <a role=\"button\" class=\"panel-title collapsed\" data-toggle=\"collapse\" data-core href=\"#collapse2\" aria-expanded=\"false\" aria-controls=\"collapse2\">\n <h6 class=\"panel-title-edit mbr-fonts-style mb-0\" mbr-theme-style=\"display-5\" data-app-selector=\".panel-title-edit\"><b>Misi</b></h6>\n <span class=\"sign mbr-iconfont mbri-arrow-down\"></span>\n </a>\n </div>\n <div id=\"collapse2\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingOne\" data-parent=\"#accordion\">\n <div class=\"panel-body\">\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">\n Adapun misi yang kami formulasikan untuk mencapai visi kami adalah dengan menciptakan dan mengembangkan teknologi digital berbasis IT dengan pendayagunaan artificiall intelligent dan machine learning yang dapat meningkatkan kualitas Sumber Daya Manusia secara berkelanjutan. </p>\n </div>\n </div>\n </div>\n <div class=\"card mb-3\" mbr-if=\"cardAmount > 2\">\n <div class=\"card-header\" role=\"tab\" id=\"headingOne\">\n <a role=\"button\" class=\"panel-title collapsed\" data-toggle=\"collapse\" data-core href=\"#collapse3\" aria-expanded=\"false\" aria-controls=\"collapse3\">\n <h6 class=\"panel-title-edit mbr-fonts-style mb-0\" mbr-theme-style=\"display-7\" data-app-selector=\".panel-title-edit\"><b>Can I create sites for commerical\n projects?</b></h6>\n <span class=\"sign mbr-iconfont mbri-arrow-down\"></span>\n </a>\n </div>\n <div id=\"collapse3\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingOne\" data-parent=\"#accordion\">\n <div class=\"panel-body\">\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">\n Yes, Mobirise is free for both non-profit and commercial sites.</p>\n </div>\n </div>\n </div>\n <div class=\"card mb-3\" mbr-if=\"cardAmount > 3\">\n <div class=\"card-header\" role=\"tab\" id=\"headingOne\">\n <a role=\"button\" class=\"panel-title collapsed\" data-toggle=\"collapse\" data-core href=\"#collapse4\" aria-expanded=\"false\" aria-controls=\"collapse4\">\n <h6 class=\"panel-title-edit mbr-fonts-style mb-0\" mbr-theme-style=\"display-7\" data-app-selector=\".panel-title-edit\"><b>What is Code Editor?</b></h6>\n <span class=\"sign mbr-iconfont mbri-arrow-down\"></span>\n </a>\n </div>\n <div id=\"collapse4\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingOne\" data-parent=\"#accordion\">\n <div class=\"panel-body\">\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">\n This extension allows editing the code of block in the app. Also, it's possible to\n add code to the head and body parts of pages.</p>\n </div>\n </div>\n </div>\n <div class=\"card mb-3\" mbr-if=\"cardAmount > 4\">\n <div class=\"card-header\" role=\"tab\" id=\"headingOne\">\n <a role=\"button\" class=\"panel-title collapsed\" data-toggle=\"collapse\" data-core href=\"#collapse5\" aria-expanded=\"false\" aria-controls=\"collapse5\">\n <h6 class=\"panel-title-edit mbr-fonts-style mb-0\" mbr-theme-style=\"display-7\" data-app-selector=\".panel-title-edit\"><b>What is Mobirise Kit?\n </b></h6>\n <span class=\"sign mbr-iconfont mbri-arrow-down\"></span>\n </a>\n </div>\n <div id=\"collapse5\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingOne\" data-parent=\"#accordion\">\n <div class=\"panel-body\">\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">\n Mobirise Kit is a service that provides the access to all current and new\n themes/extensions developed by Mobirise. New themes/extensions are released every\n month and will be available in your account during your plan period, without any\n additional charge.</p>\n </div>\n </div>\n </div>\n <div class=\"card mb-3\" mbr-if=\"cardAmount > 5\">\n <div class=\"card-header\" role=\"tab\" id=\"headingOne\">\n <a role=\"button\" class=\"panel-title collapsed\" data-toggle=\"collapse\" data-core href=\"#collapse6\" aria-expanded=\"false\" aria-controls=\"collapse6\">\n <h6 class=\"panel-title-edit mbr-fonts-style mb-0\" mbr-theme-style=\"display-7\" data-app-selector=\".panel-title-edit\"><b>Can I create sites for commerical\n projects?</b></h6>\n <span class=\"sign mbr-iconfont mbri-arrow-down\"></span>\n </a>\n </div>\n <div id=\"collapse6\" class=\"panel-collapse noScroll collapse\" role=\"tabpanel\" aria-labelledby=\"headingOne\" data-parent=\"#accordion\">\n <div class=\"panel-body\">\n <p class=\"mbr-fonts-style panel-text\" mbr-theme-style=\"display-4\" data-app-selector=\".panel-text\">\n Yes, Mobirise is free for both non-profit and commercial sites.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "ss235jXSGi",
"_anchor": "content16-15",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"background-color": "@bgColor",
"blockquote": {
"border-color": "@lineColor",
"border-radius": "4px",
"background-color": "@cardColor"
},
".mbr-text": {
"text-align": "left"
}
},
"_name": "content7",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"content7\" 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 <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"10\" step=\"1\">\n <input type=\"color\" name=\"lineColor\" title=\"Line Color\" value=\"#6592e6\">\n <input type=\"color\" name=\"cardColor\" title=\"Color\" value=\"#fafafa\">\n <header>Background</header>\n <input type=\"color\" title=\"Color\" name=\"bgColor\" value=\"#bbbbbb\">\n </mbr-parameters>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-12 col-md-{{textWidth}}\">\n <blockquote>\n <h5 class=\"mbr-section-title mbr-fonts-style mb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\"><b>Proyek teranyar</b><b><br></b></h5>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-4\" data-app-selector=\".mbr-text\">PyRuhr tergerak untuk memberikan kontribusi nyata terhadap masyarakat melalui pengembangan sebuah aplikasi. Mengingat latar belakang dari anggota komunitas PyRuhr adalah muslim, maka sangatlah relatable apabila para anggota komunitas ingin memberikan sumbangsih keahlian dan keilmuannya kepada masyarakat, khususnya umat Islam. \n<br>\n<br>Aplikasi yang dikembangkan oleh PyRuhr saat ini adalah sebuah aplikasi yang diharapkan mampu berperan sebagai “assisten” bagi para penghapal Qur’an dalam mengecek keakuratan hapalanya, makhrojul hurufnya, dan tajwidnya. Aplikasi ini memberikan kemudahan bagi umat Islam untuk menghapal Quran secara mandiri. Dengan melibatkan tenaga ahli di bidang Qiraah AL Quran dari pesantren di Indonesia, aplikasi ini memberikan jaminan quality control dari sang Maestro. \n<br>\n<br>Dengan penggunaan program Python, proyek yang diberi nama “ Hafidz-check ” memiliki slogan “asisten pribadinya para hafidz/ah” sangat tepat untuk para Hafidz/ah ataupun calon Hafidz/ah dalam melatih dan menjaga hapalan Al Quran nya. “Hafidz-check” akan direlease sebagai apps free (tidak berbayar) dengan harapan apps ini dapat menjangkau langsung para Hafidz/ah atau calon Hafidz/ah dan membantu mereka dalam melestarikan dan mengecek hapalan mereka. <br></p></blockquote>\n </div>\n </div>\n </div>\n</section>",
"_cid": "ss24o04Bix",
"_anchor": "content7-16",
"_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": {
"width": "100%",
"& when (@autoSize)": {
"height": "100%",
"object-fit": "cover",
"& when (@showCardTitle)": {
"height": "(@imageHeight * 100px)",
"object-fit": "cover"
},
"& when (@showCardSubtitle)": {
"height": "(@imageHeight * 100px)",
"object-fit": "cover"
},
"& when (@showText)": {
"height": "(@imageHeight * 100px)",
"object-fit": "cover"
},
"& when (@showButtons)": {
"height": "(@imageHeight * 100px)",
"object-fit": "cover"
}
}
},
".item:focus, span:focus": {
"outline": "none"
},
".item": {
"cursor": "pointer",
"margin-bottom": "2rem"
},
"& when not (@spacing)": {
".row": {
"margin-left": "0",
"margin-right": "0"
},
".item": {
"padding": "0",
"margin": "0"
}
},
".item-wrapper": {
"position": "relative",
"border-radius": "4px",
"background": "@cardsBg",
"height": "100%",
"display": "flex",
"flex-flow": "column nowrap",
"@media (min-width: 992px)": {
"& when (@showButtons)": {
".item-content": {
"padding": "2rem 2rem 0"
},
".item-footer": {
"padding": "0 2rem 2rem"
}
},
"& when not (@showButtons)": {
".item-content": {
"padding": "2rem"
}
}
},
"@media (max-width: 991px)": {
"& when (@showButtons)": {
".item-content": {
"padding": "1rem 1rem 0"
},
".item-footer": {
"padding": "0 1rem 1rem"
}
},
"& when not (@showButtons)": {
".item-content": {
"padding": "1rem"
}
}
}
},
".mbr-section-btn": {
"margin-top": "auto !important"
},
".mbr-section-title": {
"color": "#232323"
},
".mbr-text, .mbr-section-btn": {
"text-align": "left"
},
".item-title": {
"text-align": "left"
},
".item-subtitle": {
"text-align": "left",
"color": "#bbbbbb"
}
},
"_name": "features4",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"features4\" group=\"Features\">\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 <select title=\"Columns\" name=\"cardsWidth\">\n <option value=\"12\">1</option>\n <option value=\"6\">2</option>\n <option value=\"4\" selected>3</option>\n <option value=\"3\">4</option>\n </select>\n <header>Show/Hide</header>\n <input type=\"checkbox\" name=\"showTitle\" title=\"Title\" checked>\n <input type=\"checkbox\" name=\"showSubtitle\" title=\"Subtitle\">\n <header>Cards</header>\n <input type=\"checkbox\" name=\"autoSize\" title=\"Auto Size\" checked>\n <input type=\"range\" name=\"imageHeight\" title=\"Height\" min=\"1\" max=\"5\" step=\"1\" value=\"3\" condition=\"autoSize && !(showButtons==false && showCardSubtitle==false && showCardTitle==false && showText==false)\">\n <input type=\"checkbox\" title=\"Spacing\" name=\"spacing\" checked>\n <input type=\"checkbox\" name=\"showCardTitle\" title=\"Title\" checked>\n <input type=\"checkbox\" name=\"showCardSubtitle\" title=\"Subtitle\" checked>\n <input type=\"checkbox\" name=\"showText\" title=\"Text\" checked>\n <input type=\"checkbox\" name=\"showButtons\" title=\"Buttons\" checked>\n <input type=\"color\" name=\"cardsBg\" title=\"BG\" value=\"#ffffff\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" required>\n <input type=\"image\" title=\"Image\" value=\"../_images/background3.jpg\" selected>\n <input type=\"color\" title=\"Color\" value=\"#fafafa\">\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=\"#fafafa\" condition=\"overlay && bg.type == 'image'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.6\" condition=\"overlay && bg.type == 'image'\">\n </mbr-parameters>\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\"></div>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"mbr-section-head\" mbr-if=\"showTitle || showSubtitle\">\n <h4 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>Proyek yang kami kembangkan</b></h4>\n <h5 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\">To add more cards, hover on a card and\n click 'Add items'</h5>\n </div>\n <div class=\"row mt-4\">\n <div class=\"item features-image сol-12 col-md-6 col-lg-{{cardsWidth}}\">\n <div class=\"item-wrapper\">\n <div class=\"item-img\">\n <img src=\"@PROJECT_PATH@/assets/images/pexels-dmitry-demidov-3783471-696x464.jpeg\" alt title>\n </div>\n <div class=\"item-content\" mbr-if=\"showCardTitle || showCardSubtitle || showText || showButtons\">\n <h5 class=\"item-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".item-title\" mbr-if=\"showCardTitle\"><b>Rekam</b></h5>\n <h6 class=\"item-subtitle mbr-fonts-style mt-1\" mbr-theme-style=\"display-7\" data-app-selector=\".item-subtitle\" mbr-if=\"showCardSubtitle\">aplikasi rekaman mengaji</h6>\n <p class=\"mbr-text mbr-fonts-style mt-3\" mbr-if=\"showText\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text, .mbr-section-btn\">bantu kami meningkatkan akurasi deteksi suara hafalan quran dengan merekam suara mengaji anda</p>\n </div>\n <div class=\"mbr-section-btn item-footer mt-2\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\" mbr-buttons mbr-theme-style=\"display-7\"><a href=\"http://rekam.pyruhr.com\" class=\"btn item-btn btn-black\" target=\"_blank\" data-app-placeholder=\"Type Text\">kunjungi</a></div>\n </div>\n </div>\n <div class=\"item features-image сol-12 col-md-6 col-lg-{{cardsWidth}}\">\n <div class=\"item-wrapper\">\n <div class=\"item-img\">\n <img src=\"@PROJECT_PATH@/assets/images/pexels-michael-burrows-7129614-696x464.jpeg\" alt title>\n </div>\n <div class=\"item-content\" mbr-if=\"showCardTitle || showCardSubtitle || showText || showButtons\">\n <h5 class=\"item-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".item-title\" mbr-if=\"showCardTitle\"><b>Test hafalan</b></h5>\n <h6 class=\"item-subtitle mbr-fonts-style mt-1\" mbr-theme-style=\"display-7\" data-app-selector=\".item-subtitle\" mbr-if=\"showCardSubtitle\">\n test hafalan quran</h6>\n <p class=\"mbr-text mbr-fonts-style mt-3\" mbr-if=\"showText\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text, .mbr-section-btn\">anda bisa mengetes hafalan quran anda dengan bantuan Artificial Intelligent yang kami buat</p>\n </div>\n <div class=\"mbr-section-btn item-footer mt-2\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\" mbr-buttons mbr-theme-style=\"display-7\"><a href class=\"btn item-btn btn-black\" target=\"_blank\" data-app-placeholder=\"Type Text\">coming soon</a></div>\n </div>\n </div>\n <div class=\"item features-image сol-12 col-md-6 col-lg-{{cardsWidth}}\">\n <div class=\"item-wrapper\">\n <div class=\"item-img\">\n <img src=\"@PROJECT_PATH@/assets/images/pexels-mentatdgt-1078740-696x464.jpeg\" alt title>\n </div>\n <div class=\"item-content\" mbr-if=\"showCardTitle || showCardSubtitle || showText || showButtons\">\n <h5 class=\"item-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".item-title\" mbr-if=\"showCardTitle\"><b>Bandingkan poin</b></h5>\n <h6 class=\"item-subtitle mbr-fonts-style mt-1\" mbr-theme-style=\"display-7\" data-app-selector=\".item-subtitle\" mbr-if=\"showCardSubtitle\">ajak teman sama-sama hafal quran</h6>\n <p class=\"mbr-text mbr-fonts-style mt-3\" mbr-if=\"showText\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text, .mbr-section-btn\">ajak teman anda, berlomba-lomba dalam kebaikan, meningkatkan hafalan quran.</p>\n </div>\n <div class=\"mbr-section-btn item-footer mt-2\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd\" mbr-buttons mbr-theme-style=\"display-7\"><a href class=\"btn item-btn btn-black\" data-app-placeholder=\"Type Text\" target=\"_blank\">coming soon</a></div>\n </div>\n </div>\n\n </div>\n </div>\n</section>",
"_cid": "srKWSwHyop",
"_anchor": "features4-v",
"_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)"
},
".number-wrap": {
"color": "@labelsColor",
"text-align": "center"
},
".number": {
"color": "@numbersColor",
"white-space": "nowrap"
},
".period": {
"display": "block"
},
".dot": {
"display": "none"
},
"@media (max-width: 767px)": {
".period": {
"font-size": "0.8rem"
}
},
".btn": {
"height": "100%",
"margin": "0"
},
".mbr-section-btn": {
"margin-bottom": "1.2rem"
}
},
"_name": "countdown1",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"countdown1\" group=\"Countdowns\" plugins=\"countdown\" 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=\"5\" condition=\"fullScreen == false\">\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=\"Text\" name=\"showText\" checked>\n <header>Settings</header>\n <input type=\"text\" title=\"Countdown\" name=\"countdown\" value=\"2021/07/01\">\n <input type=\"text\" inline title=\"Days\" name=\"daysCountdown\" value=\"Hari\">\n <input type=\"text\" inline title=\"Hours\" name=\"hoursCountdown\" value=\"Jam\">\n <input type=\"text\" inline title=\"Minutes\" name=\"minutesCountdown\" value=\"Menit\">\n <input type=\"text\" inline title=\"Seconds\" name=\"secondsCountdown\" value=\"Detik\">\n <input type=\"color\" title=\"Numbers Color\" name=\"numbersColor\" value=\"#232323\">\n <input type=\"color\" title=\"Labels Color\" name=\"labelsColor\" value=\"#232323\">\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=\"#ffffff\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" checked condition=\"bg.type !== 'color'\">\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 <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=\"row justify-content-center\">\n <div class=\"col-lg-8\">\n <h3 class=\"mbr-section-title mb-5 align-center mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">\n <b>Coming Soon</b>\n </h3>\n <h4 class=\"mbr-section-subtitle mb-5 align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">\n Peluncuran aplikasi tes hafalan dengan bantuan AI</h4>\n <div class=\"countdown-cont align-center mb-5\">\n <div title=\"{{daysCountdown}}\" class=\"daysCountdown col-xs-3 col-sm-3 col-md-3\"></div>\n <div title=\"{{hoursCountdown}}\" class=\"hoursCountdown col-xs-3 col-sm-3 col-md-3\"></div>\n <div title=\"{{minutesCountdown}}\" class=\"minutesCountdown col-xs-3 col-sm-3 col-md-3\"></div>\n <div title=\"{{secondsCountdown}}\" class=\"secondsCountdown col-xs-3 col-sm-3 col-md-3\"></div>\n <div class=\"countdown\" data-due-date=\"{{countdown}}\"></div>\n </div>\n <p class=\"mbr-text mb-5 align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Masukkan email anda, kami akan kabari begitu aplikasi tes hafalan sudah siap</p>\n </div>\n </div>\n <div class=\"row\">\n <div mbr-form class=\"col-lg-4 mx-auto mbr-form\">\n <form action=\"[email protected]\" name=\"Form Name\" method=\"POST\" data-rcpha_sitekey=\"\" data-rcpha_secretkey=\"\" class=\"mbr-form form-with-styler\">\n <div class=\"row\">\n <div hidden=\"hidden\" data-form-alert class=\"alert alert-success col-12\">terima kasih, kami akan mengabari anda jika aplikasi kami sudah siap</div>\n <div hidden=\"hidden\" data-form-alert-danger class=\"alert alert-danger col-12\">Oops...! some problem!</div>\n </div>\n <div class=\"dragArea row\">\n <div class=\"col form-group\" data-for=\"email\">\n <input type=\"text\" name=\"email\" placeholder=\"Email\" data-form-field=\"email\" class=\"form-control\" required=\"required\" value>\n </div>\n <div class=\"mbr-section-btn\" mbr-buttons=\"true\" mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove,-mbrLink,-mbrBtnRemove,-mbrBtnAdd\"><a type=\"submit\" class=\"btn btn-primary\" data-app-placeholder=\"Type Text\">masukkan email</a></div>\n </div>\n </form>\n </div>\n </div>\n </div>\n</section>",
"_cid": "srKXvgEBfm",
"_anchor": "countdown1-11",
"_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)"
},
".card-box": {
"z-index": "10",
"position": "relative"
},
"@media (min-width: 1500px)": {
".container": {
"max-width": "1400px"
}
},
".card": {
"margin": "auto"
},
".mbr-iconfont": {
"display": "block",
"font-size": "5rem",
"color": "@iconColor",
"margin-bottom": "2rem"
},
".card-wrapper": {
"display": "flex",
"justify-content": "center",
"align-items": "center"
},
".row": {
"justify-content": "center"
}
},
"_name": "features14",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"features13\" group=\"Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\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=\"9\" step=\"1\" value=\"4\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"4\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showmainTitle\" checked>\n <header>Card</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Icons\" name=\"showIcon\" checked>\n <input type=\"color\" title=\"Icon Color\" name=\"iconColor\" value=\"#000000\" selected condition=\"showIcon\">\n <select title=\"Cards\" name=\"cardsAmount\">\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 </select>\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background4.jpg\" parallax>\n <input type=\"color\" title=\"Color\" value=\"#fff0b0\" 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.5\" 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=\"row\">\n <div class=\"col-12\" mbr-if=\"showmainTitle\">\n <h3 class=\"mbr-section-title align-center mb-4 mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showmainTitle\"><b>Fitur unggulan</b></h3>\n </div>\n <div class=\"card col-12 col-md-4 col-lg-2 p-3\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-browse mobi-mbri\" mbr-if=\"showIcon\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-box\">\n <b>akurasi pengecekan</b></h4>\n </div>\n </div>\n </div>\n <div class=\"card p-3 col-12 col-md-4 col-lg-2\" mbr-if=\"cardsAmount > 1\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-music mobi-mbri\" mbr-if=\"showIcon\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-box\">\n <b>interaksi dengan suara</b></h4>\n </div>\n </div>\n </div>\n <div class=\"card p-3 col-12 col-md-4 col-lg-2\" mbr-if=\"cardsAmount > 2\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-contact-form mobi-mbri\" mbr-if=\"showIcon\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-box\"><b>koreksi perkata</b></h4>\n </div>\n </div>\n </div>\n <div class=\"card p-3 col-12 col-md-4 col-lg-2\" mbr-if=\"cardsAmount > 3\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-features mobi-mbri\" mbr-if=\"showIcon\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-box\">\n <b>penanda kesalahan</b></h4>\n </div>\n </div>\n </div>\n <div class=\"card p-3 col-12 col-md-4 col-lg-2\" mbr-if=\"cardsAmount > 4\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-responsive mobi-mbri\" mbr-if=\"showIcon\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-box\"><b>multiplatform</b></h4>\n </div>\n </div>\n </div>\n <div class=\"card p-3 col-12 col-md-4 col-lg-2\" mbr-if=\"cardsAmount > 5\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-devices mobi-mbri\" mbr-if=\"showIcon\"></span>\n <h4 class=\"card-title align-center mbr-black mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-box\"><b>diakses dari berbagai perangkat</b></h4>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "srKWXBUjRt",
"_anchor": "features14-w",
"_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)"
},
".timeline-element": {
"position": "relative"
},
".image-wrapper img": {
"width": "100%",
"object-fit": "cover"
},
".iconBackground": {
"position": "absolute",
"@media (max-width: 767px)": {
"left": "15px"
},
"@media (min-width: 768px)": {
"left": "50%"
},
"width": "20px",
"height": "20px",
"border-radius": "50%",
"border": "2px solid @lineColor",
"top": "30px",
"margin-left": "-9px"
},
".row": {
"&:after": {
"content": "\"\"",
"position": "absolute",
"background-color": "@lineColor",
"width": "2px",
"@media (max-width: 767px)": {
"left": "15px"
},
"@media (min-width: 768px)": {
"left": "50%"
},
"top": "50px",
"height": "calc(100% ~\"-\" 10px)"
},
"& when (@reverseTimeline)": {
"flex-direction": "row-reverse",
"&:nth-child(even)": {
".mbr-timeline-date": {
"text-align": "right"
},
"@media (max-width: 767px)": {
"flex-direction": "column-reverse"
}
}
},
"& when not (@reverseTimeline)": {
"&:nth-child(odd)": {
".mbr-timeline-date": {
"text-align": "right"
}
},
"&:nth-child(even)": {
"@media (max-width: 767px)": {
"flex-direction": "column-reverse"
}
}
}
},
"@media (max-width: 767px)": {
".timeline-date-wrapper, .timeline-text-wrapper": {
"padding": "0rem",
"padding-left": "2rem"
},
".mbr-timeline-date": {
"text-align": "left !important"
}
},
"@media (max-width: 991px) and (min-width: 768px)": {
".timeline-date-wrapper, .timeline-text-wrapper": {
"padding": "1rem"
}
},
"@media (min-width: 992px)": {
".timeline-date-wrapper, .timeline-text-wrapper": {
"padding": "2rem"
}
}
},
"_name": "timeline1",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"timeline1\" group=\"Timelines\" data-bg-video=\"{{bg.type == 'video'&&bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\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=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"6\">\n <input type=\"checkbox\" title=\"Reverse Timeline\" name=\"reverseTimeline\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Dates\" name=\"showDates\" checked>\n <input type=\"checkbox\" title=\"Images\" name=\"showImages\" checked>\n <select title=\"Count\" name=\"timelinesAmount\">\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 <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=\"../_images/background3.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=\"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 <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}\" class=\"timelines-container\" mbri-timelines>\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>Milestone</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\">\n Enter subtitle here\n </h4>\n </div>\n <div class=\"row timeline-element mb-2 mt-4\" mbr-class=\"{'reverseTimeline': reverseTimeline}\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" data-toolbar=\"-mbrAlign\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-app-selector=\".mbr-timeline-date\">\n <b>mulai Maret 2021</b></p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\"><b>akselerasi kontributor</b></h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/pexels-keith-wako-99820-948x948.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n banyak kontributor bergabung dari berbagai disiplin ilmu dan keahlian baik dari dunia akademisi maupun industri</p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-if=\"timelinesAmount>1\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>sharing ilmu online</b></h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/pexels-anna-shvets-5029919-948x1422.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special\n actions required.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\"><b>januari 2021 - maret 2021</b></p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-if=\"timelinesAmount>2\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\"><b>Desember 2020</b></p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>komunitas pyruhr terbentuk</b></h4>\n <div class=\"image-wrapper mb-4\" mbr-if=\"showImages\">\n <img src=\"@PROJECT_PATH@/assets/images/pexels-ingo-joseph-609771-948x948.jpg\" alt=\"Mobirise\" title>\n </div>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">pandemi korona memberikan pelung untuk saling berbagi melalui media online. komunitas online pyruhr terbentuk</p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>3\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</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-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit\n projects.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>4\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</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-text\">\n You don't have to code to create your own site. Select one of available themes in the Mobirise\n sitebuilder.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>5\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</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-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special\n actions required.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>6\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</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-text\">\n Select the theme that suits you. Each theme in the Mobirise site builder contains a set of\n unique blocks.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>7\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</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-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit\n projects.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>8\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</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-text\">\n You don't have to code to create your own site. Select one of available themes in the Mobirise\n sitebuilder.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>9\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</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-text\">\n All sites you create with the Mobirise web builder are mobile-friendly natively. No special\n actions required.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>10\">\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</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-text\">\n Select the theme that suits you. Each theme in the Mobirise site builder contains a set of\n unique blocks.\n </p>\n </div>\n </div>\n </div>\n <div class=\"row timeline-element mb-2\" mbr-class=\"{'reverseTimeline': reverseTimeline}\" mbr-if=\"timelinesAmount>11\">\n <div class=\"col-12 col-md-6\">\n <div class=\"timeline-text-wrapper\">\n <h4 class=\"mbr-timeline-title mbr-fonts-style mb-4\" mbr-theme-style=\"display-5\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-title\">\n <b>Form Builder</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-text\">\n Use Mobirise website building software to create multiple sites for commercial and non-profit\n projects.\n </p>\n </div>\n </div>\n <span class=\"iconBackground\"></span>\n <div class=\"timeline-date col-12 col-md-6\">\n <div class=\"timeline-date-wrapper\">\n <p class=\"mbr-timeline-date mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showDates\" data-toolbar=\"-mbrAlign\" data-app-selector=\".mbr-timeline-date\">\n <b>23 April 2025</b>\n </p>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "srKJ1o67rs",
"_anchor": "timeline1-t",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": "facebook-feed/components",
"_isSecondary": true,
"typeCompatible": "!isAMP",
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"background-color": "@bgColor",
".fb-page, span, iframe": {
"width": "(@width * 1px)",
"height": "(@height * 1px)"
},
"blockquote": {
"display": "none"
},
".fb-page": {
"background-color": "#1877f2",
"border-radius": "4px",
"background-size": "contain",
"background-repeat": "no-repeat",
"color": "#fff",
"background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>\")"
}
},
"_name": "facebook-page",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"facebook-page\" plugins=\"facebook-page-plugin\">\n <mbr-parameters>\n <header>Size</header>\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=\"width\" title=\"Width\" step=\"10\" min=\"180\" max=\"500\" value=\"500\">\n <input type=\"range\" name=\"height\" title=\"Height\" step=\"50\" min=\"70\" max=\"1000\" value=\"570\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" name=\"showTitle\" title=\"Title\" checked>\n <input type=\"checkbox\" name=\"showSubtitle\" title=\"Subtitle\" checked>\n <input type=\"checkbox\" name=\"showText\" title=\"Text\">\n <header>Feed</header>\n <input type=\"text\" name=\"url\" title=\"Facebook Page\" value=\"https://www.facebook.com/pyruhr\">\n <input type=\"checkbox\" name=\"cover\" title=\"Cover\" checked>\n <input type=\"checkbox\" name=\"smallheader\" title=\"Small Header\">\n <input type=\"checkbox\" name=\"ctabtn\" title=\"Call To Action\" checked>\n <header>Background</header>\n <input type=\"color\" title=\"Color\" name=\"bgColor\" value=\"#ffffff\">\n </mbr-parameters>\n <div class=\"container\">\n <div class=\"mbr-section-head\" mbr-if=\"showTitle || showSubtitle\">\n <h4 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>Cek akun sosial media kami untuk komunikasi langsung dan dapat informasi terupdate</b></h4>\n <h5 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\">kami membagikan kabar terbaru melalui akun sosial media kami</h5>\n <p class=\"mbr-text mbr-fonts-style align-center mb-0 mt-2\" mbr-theme-style=\"display-4\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">Facebook Page Feed Text</p>\n </div>\n <div class=\"row justify-content-center mt-4\">\n <iframe src=\"https://www.facebook.com/plugins/page.php?href={{url}}&tabs=timeline,events,messages&width={{width}}&height={{height}}&small_header={{smallheader}}&adapt_container_width=true&hide_cover={{!cover}}&hide_cta={{ctabtn}}&appId=2773163886047820\" width=\"340\" height=\"500\" style=\"border:none;overflow:hidden\" scrolling=\"no\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n </div>\n </div>\n</section>",
"_cid": "srKX5sOEXM",
"_anchor": "facebook-page-x",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"background-color": "@bgColor",
".counter-container": {
"ul": {
"margin": "0",
"list-style": "none",
"padding-left": "2.5rem",
"li": {
"margin-bottom": "1rem",
"position": "relative",
"& when (@stylizedCounters)": {
"list-style": "none",
"position": "relative",
"padding-left": "1rem",
"&:before": {
"position": "absolute",
"left": "-40px",
"content": "\"\"",
"display": "flex",
"justify-content": "center",
"align-items": "center",
"color": "contrast(@iconColor)",
"background-color": "@iconColor",
"width": "40px",
"height": "40px",
"border-radius": "50%",
"margin-top": "5px",
"& when (@countersType = \"circle\")": {
"background": "none",
"border": "1px solid @iconColor",
"color": "@iconColor"
},
"& when (@countersType = \"square\")": {
"border-radius": "0"
},
"& when (@mark)": {
"content": "\"✓\""
}
}
},
"& when not (@stylizedCounters)": {
"&:before": {
"position": "absolute",
"left": "-1.6rem",
"content": "\"\\2022\"",
"color": "@iconColor",
"font-weight": "bold",
"font-size": "2rem",
"width": "1.6rem",
"line-height": "1.2"
}
}
}
}
},
".mbr-section-title": {
"text-align": "center"
}
},
"_name": "content8",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"content8\" 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=\"0\">\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\" checked>\n <input type=\"checkbox\" title=\"Stylized\" name=\"stylizedCounters\" checked>\n <input type=\"checkbox\" title=\"Mark\" name=\"mark\" condition=\"stylizedCounters\" checked>\n <select title=\"Type\" name=\"countersType\" condition=\"stylizedCounters\">\n <option value=\"default\" selected>Сircle Fill</option>\n <option value=\"circle\">Circle</option>\n <option value=\"square\">Square</option>\n </select>\n <input type=\"color\" name=\"iconColor\" title=\"Color\" value=\"#6592e6\">\n <header>Background</header>\n <input type=\"color\" title=\"Color\" name=\"bgColor\" value=\"#fff0b0\">\n </mbr-parameters>\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"counter-container col-md-12 col-lg-{{textWidth}}\">\n <h4 class=\"mbr-section-title mbr-fonts-style mb-4\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\"><b>Tim dan Kontributor:</b></h4>\n <div class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article>\n <ul>\n <li><b>Dr. ing. Suprianto. </b>Project Manager.</li>\n <li><b>Pramadityo Tjondronegoro M.Sc </b>Model development and refinement. Expertise in Telecom Networks and 5G Technology. </li>\n <li><b>Yudha Nurdin, B.Eng., M.eng. </b>Head of Resources and development. Expertise in Machine Learning, Multi-Agent System, Microgrid. Studied Informatics in Institut Teknology Bandung. Lecturer @ Universitas Syiah Kuala</li><li><b>Alex Prima, MMolBiol.</b> Public relation and design. Expertise in Yeast strain engineering, CRISPR-Cas9 and Genomic sequencing. Alumni of Institut Teknologi Bandung.</li>\n </ul>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "staei1jzjo",
"_anchor": "content8-1c",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"background-color": "@bgColor"
},
"_name": "content11",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"content11\" 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=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"3\">\n <input type=\"range\" name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"11\" step=\"1\">\n <header>Background</header>\n <input type=\"color\" title=\"Color\" name=\"bgColor\" value=\"#fff0b0\">\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 <div class=\"mbr-section-btn align-center\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\"><a class=\"btn btn-primary\" href=\"page1.html\" data-app-placeholder=\"Type Text\"><span class=\"mobi-mbri mobi-mbri-users mbr-iconfont mbr-iconfont-btn\"></span>Lihat semua kontributor</a></div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "stagNytcNm",
"_anchor": "content11-1f",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"background-color": "@bgColor",
"img": {
"width": "120px",
"margin": "auto"
},
".card": {
"transition": "all 0.3s",
"height": "fit-content",
"padding": "1rem 0",
"opacity": "0.7",
"margin-bottom": "1rem"
},
"@media (min-width: 992px)": {
".card": {
"max-width": "12.5%"
}
}
},
"_name": "clients1",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"clients1\" group=\"Clients\">\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 <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=\"Text\" name=\"showText\" checked>\n <input type=\"range\" inline title=\"Items\" name=\"items\" min=\"1\" max=\"8\" value=\"8\" step=\"1\">\n <header>Background</header>\n <input type=\"color\" title=\"Color\" name=\"bgColor\" value=\"#ffffff\">\n </mbr-parameters>\n <div class=\"images-container\" mbr-class=\"{'container-fluid':fullWidth, container:fullWidth==false}\">\n <div class=\"mbr-section-head\">\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>Partner dan jaringan kerjasama:</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\">selain tim inti diatas, ada banyak orang yang terlibat dalam mengembangkan aplikasi dalam pyruhr</h4>\n <p class=\"mbr-text mbr-fonts-style align-center mt-2\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">para hamba Allah yang berjuang dan menyedekahkan waktu, pikiran, ilmu, tenaga dan materi untuk pengembangan pyruhr</p>\n </div>\n <div class=\"row justify-content-center mt-4\">\n <div class=\"col-md-3 card\">\n <img src=\"../_images/clients/1.png\">\n </div>\n <div class=\"col-md-3 card\" mbr-if=\"items > 1\">\n <img src=\"../_images/clients/2.png\">\n </div>\n <div class=\"col-md-3 card\" mbr-if=\"items > 2\">\n <img src=\"../_images/clients/3.png\">\n </div>\n <div class=\"col-md-3 card\" mbr-if=\"items > 3\">\n <img src=\"../_images/clients/4.png\">\n </div>\n <div class=\"col-md-3 card\" mbr-if=\"items > 4\">\n <img src=\"../_images/clients/2.png\">\n </div>\n <div class=\"col-md-3 card\" mbr-if=\"items > 5\">\n <img src=\"../_images/clients/3.png\">\n </div>\n <div class=\"col-md-3 card\" mbr-if=\"items > 6\">\n <img src=\"../_images/clients/4.png\">\n </div>\n <div class=\"col-md-3 card\" mbr-if=\"items > 7\">\n <img src=\"../_images/clients/5.png\">\n </div>\n </div>\n </div>\n</section>",
"_cid": "sq92zVZaa7",
"_anchor": "clients1-n",
"_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)"
},
"@media (min-width: 1500px)": {
".container": {
"max-width": "1400px"
}
},
".mbr-iconfont": {
"display": "block",
"font-size": "5rem",
"color": "@iconColor",
"margin-bottom": "2rem"
},
".card-wrapper": {
"margin-top": "3rem"
},
".row": {
"justify-content": "center"
}
},
"_name": "features1",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"features1\" group=\"Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\" checked>\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"4\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"4\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showMainTitle\" checked>\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showMainSubtitle\" checked>\n <header>Card</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Icons\" name=\"showIcon\" checked>\n <input type=\"color\" title=\"Icon Color\" name=\"iconColor\" value=\"#000000\" selected condition=\"showIcon\">\n <select title=\"Cards\" name=\"cardsAmount\">\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 <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background4.jpg\" parallax>\n <input type=\"color\" title=\"Color\" value=\"#ffb5b5\" 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.5\" 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=\"row\">\n <div class=\"col-12\" mbr-if=\"showMainTitle || showMainSubtitle\" mbr-class=\"{'col-lg-9': cardsAmount == '3'}\">\n <h3 class=\"mbr-section-title mbr-fonts-style align-center mb-0\" mbr-theme-style=\"display-2\" mbr-if=\"showMainTitle\" data-app-selector=\".mbr-section-title\">\n <b>Donasi</b></h3>\n <h5 class=\"mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2\" mbr-theme-style=\"display-7\" mbr-if=\"showMainSubtitle\" data-app-selector=\".mbr-section-subtitle\">Sebagai komunitas yang berbasis nirlaba, sejauh ini proyek-proyek yang dikerjakan oleh PyRuhr medapatkan dukungan material dan finansial dari para anggotanya dan dari donasi masyarakat. Melihat banyaknya pengembangan yang dapat dilakukan untuk lebih menebar manfaat, sekaligus untuk meningkatkan kualitas proyek-proyek kami, kami juga melakukan penggalangan dana melalui beberapa platform sbb:</h5>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"card col-12 col-md-6 col-lg-3\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <div class=\"iconfont-wrapper\" mbr-if=\"showIcon\">\n <span mbr-icon class=\"mbr-iconfont socicon-paypal socicon\"></span>\n </div>\n <h5 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .iconfont-wrapper\"><b>Paypal</b></h5>\n <p class=\"card-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-text\">silahkan bantu kami melalui paypal</p>\n </div>\n </div>\n </div>\n <div class=\"card col-12 col-md-6 col-lg-3\" mbr-if=\"cardsAmount > 1\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <div class=\"iconfont-wrapper\" mbr-if=\"showIcon\">\n <span mbr-icon class=\"mbr-iconfont socicon-doodle socicon\"></span>\n </div>\n <h5 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .iconfont-wrapper\"><b>Kitabisa</b></h5>\n <p class=\"card-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-text\">anda juga bisa membantu kami melalui kitabisa</p>\n </div>\n </div>\n </div>\n <div class=\"card col-12 col-md-6 col-lg-3\" mbr-if=\"cardsAmount > 2\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <div class=\"iconfont-wrapper\" mbr-if=\"showIcon\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-cash mobi-mbri\"></span>\n </div>\n <h5 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .iconfont-wrapper\"><b>Gofundme</b></h5>\n <p class=\"card-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-text\">alternatif lain donasi dapat disalurkan melalui gofundme</p>\n </div>\n </div>\n </div>\n <div class=\"card col-12 col-md-6 col-lg-3\" mbr-if=\"cardsAmount > 3\">\n <div class=\"card-wrapper\">\n <div class=\"card-box align-center\">\n <div class=\"iconfont-wrapper\" mbr-if=\"showIcon\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-sites mobi-mbri\"></span>\n </div>\n <h5 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .iconfont-wrapper\"><b>Unlimited Sites</b></h5>\n <p class=\"card-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".card-text\">Use Mobirise website building software to create multiple\n sites for commercial and non-profit projects.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "ss29dXpVs9",
"_anchor": "features1-1a",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"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"
},
".media-wrap": {
"padding": "0",
"@media (max-width: 991px)": {
"margin-bottom": "1rem"
}
},
"@media (max-width: 767px)": {
".row": {
"text-align": "center",
"& > div": {
"margin": "auto"
}
},
".social-row": {
"justify-content": "center"
}
},
".social-row": {
"display": "flex",
"flex-wrap": "wrap"
},
".list": {
"list-style": "none",
"padding-left": "0",
"@media (max-width: 991px)": {
"margin-bottom": "2rem"
},
"@media (min-width: 992px)": {
"margin-bottom": "0rem"
},
"color": "#bbbbbb"
},
".mbr-text": {
"color": "#bbbbbb"
},
".soc-item": {
"display": "flex",
"align-items": "center",
"justify-content": "center",
"border-radius": "50%",
"background-color": "white",
"margin-right": "0.5rem",
"margin-bottom": "1rem",
"padding": "0.5rem",
"height": "2.5rem",
"width": "2.5rem"
},
".mbr-iconfont": {
"color": "black"
},
"@media (max-width: 991px)": {
"div > *:last-child": {
"margin-top": "0 !important"
}
},
".mbr-section-subtitle": {
"color": "#000000"
}
},
"_name": "footer4",
"_sourceTheme": "mobirise5",
"_customHTML": "<section class=\"footer4\" group=\"Footers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" global once=\"footers\" mbr-class=\"{\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\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=\"1\">\n <input type=\"range\" inline title=\"Logo Size\" name=\"logoSize\" min=\"1\" max=\"3\" step=\"1\" value=\"2\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Social\" name=\"showSocial\">\n <input type=\"range\" name=\"socialCount\" title=\"Social Count\" min=\"1\" max=\"4\" step=\"1\" value=\"3\" condition=\"showSocial\">\n <input type=\"checkbox\" title=\"Copyright\" name=\"showCopyright\" checked>\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background8.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#353535\" 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=\"#232323\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.6\" 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 mbr-white\">\n <div class=\"col-6 col-lg-3\">\n <div class=\"media-wrap col-md-{{4*logoSize}} col-12\">\n <a href=\"https://mobiri.se/\">\n <img src=\"@PROJECT_PATH@/assets/images/8-337x337.png\" alt=\"Mobirise\">\n </a>\n </div>\n </div>\n <div class=\"col-12 col-md-6 col-lg-3\">\n <h5 class=\"mbr-section-subtitle mbr-fonts-style mb-2\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\">\n <b>About</b>\n </h5>\n <p class=\"mbr-text mbr-fonts-style mb-4\" mbr-theme-style=\"display-4\" data-app-selector=\".mbr-text\">\n Pyruhr adalah komunitas pemanfaat bahasa python dan teknologi terkait, terutama bidang AI dan Machine Learning dalam menyelesaikan masalah-masalah praktis</p>\n <h5 class=\"mbr-section-subtitle mbr-fonts-style mb-3\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-section-subtitle\" mbr-if=\"showTitle && showSocial\">\n <b>Follow Us</b>\n </h5>\n <div class=\"social-row display-7\" mbr-if=\"showSocial\">\n <div class=\"soc-item\">\n <a href=\"https://twitter.com/mobirise\" target=\"_blank\">\n <span mbr-icon class=\"mbr-iconfont socicon socicon-facebook\"></span>\n </a>\n </div>\n <div class=\"soc-item\" mbr-if=\"socialCount>1\">\n <a href=\"https://twitter.com/mobirise\" target=\"_blank\">\n <span mbr-icon class=\"mbr-iconfont socicon socicon-twitter\"></span>\n </a>\n </div>\n <div class=\"soc-item\" mbr-if=\"socialCount>2\">\n <a href=\"https://twitter.com/mobirise\" target=\"_blank\">\n <span mbr-icon class=\"mbr-iconfont socicon socicon-instagram\"></span>\n </a>\n </div>\n <div class=\"soc-item\" mbr-if=\"socialCount>3\">\n <a href=\"https://twitter.com/mobirise\" target=\"_blank\">\n <span mbr-icon class=\"mbr-iconfont socicon socicon-instagram\"></span>\n </a>\n </div>\n </div>\n </div>\n <div class=\"col-12 col-md-6 col-lg-3\">\n <h5 mbr-text class=\"mbr-section-subtitle mbr-fonts-style mb-2\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\"><b>Produk dan Layanan</b></h5>\n <ul class=\"list mbr-fonts-style\" mbr-theme-style=\"display-4\" data-app-selector=\".list\" data-multiline mbr-article>\n <li class=\"mbr-text item-wrap\"><a href=\"http://rekam.pyruhr.com\" class=\"text-primary\" target=\"_blank\">Rekam ngaji</a></li>\n </ul>\n </div>\n <div class=\"col-12 col-md-6 col-lg-3\">\n <h5 mbr-text class=\"mbr-section-subtitle mbr-fonts-style mb-2\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\"></h5>\n <ul class=\"list mbr-fonts-style\" mbr-theme-style=\"display-4\" data-app-selector=\".list\" data-multiline mbr-article>\n <li class=\"mbr-text item-wrap\"><br></li>\n </ul>\n </div>\n <div class=\"col-12 mt-4\" mbr-if=\"showCopyright\">\n <p class=\"mbr-text mb-0 mbr-fonts-style copyright align-center\" mbr-theme-style=\"display-7\" data-app-selector=\".copyright\" data-app-placeholder=\"Type Text\">\n © Copyright 2025 PyRuhr - All Rights Reserved\n </p>\n </div>\n </div>\n </div>\n</section>",
"_cid": "srVEZ4byeE",
"_anchor": "footer4-12",
"_protectedParams": [],
"_global": true,
"_once": "footers",
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@sticky)": {
".navbar-dropdown": {
"position": "relative !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"
},
".dropdown-item": {
"border-bottom": "1px solid #e6e6e6",
"&:hover, &:focus": {
"background": "@primaryColor !important",
"color": "white !important"
}
},
".nav-dropdown .link": {
"padding": "0 0.3em !important",
"margin": ".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": ".5rem"
},
".navbar-caption": {
"padding-right": "4rem"
},
".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-left": "-1.8rem",
"padding-right": "1rem",
"font-size": "inherit",
"&: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": "77px",
"transition": "all .3s",
"border-bottom": "1px solid transparent",
"&:not(.navbar-short)": {
"border-bottom": "1px solid #e6e6e6"
},
"& when not (@transparent)": {
"background": "@menuBgColor"
},
"& when (@transparent)": {
"background": "rgba(red(@menuBgColor), green(@menuBgColor), blue(@menuBgColor), @opacity)"
},
"&.opened": {
"transition": "all .3s"
},
".dropdown-item": {
"padding": ".5rem 1.8rem"
},
".navbar-logo img": {
"width": "auto"
},
".navbar-collapse": {
"justify-content": "flex-end",
"z-index": "1",
"& when not (@showItems)": {
"display": "none !important"
}
},
"&.collapsed": {
".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": "55%"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": ".25rem 1.5rem",
"text-align": "center"
},
".icons-menu": {
"padding-left": "0",
"padding-right": "0",
"padding-top": ".5rem",
"padding-bottom": ".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": {