forked from euniversidades/euniversidades.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.mobirise
5399 lines (5399 loc) · 488 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": "Site-12-27_1451",
"currentPage": "nosotros.html",
"theme": {
"name": "mobirise4",
"title": "Mobirise 4",
"styling": {
"primaryColor": "#149dcc",
"secondaryColor": "#ff3366",
"successColor": "#F7ED4A",
"infoColor": "#82786E",
"warningColor": "#879A9F",
"dangerColor": "#B1A374",
"mainFont": "Rubik",
"display1Font": "Rubik",
"display1Size": 4.25,
"display2Font": "Rubik",
"display2Size": 3,
"display5Font": "Rubik",
"display5Size": 1.5,
"display7Font": "Rubik",
"display7Size": 1,
"display4Font": "Rubik",
"display4Size": 1,
"isRoundedButtons": true,
"isAnimatedOnScroll": false,
"isScrollToTopButton": false
},
"additionalSetColors": [
"#f9f9f9",
"#2e2e2e",
"#eaeaea",
"#f2f2f2",
"#bdbcba",
"#978b63",
"#000000"
]
},
"versionFirst": "4.5.4",
"uniqCompNum": 233,
"versionPublish": "4.5.4",
"path": "@PROJECT_PATH@",
"screenshot": "screenshot.png"
},
"pages": {
"contenidos.html": {
"settings": {
"title": "Contenidos",
"meta_descr": "",
"header_custom": "",
"footer_custom": "",
"html_before": "",
"order": 2
},
"components": [
{
"_styles": {
".navbar": {
"padding": ".5rem 0",
"background": "@menuBgColor",
"transition": "none",
"min-height": "77px"
},
".navbar-dropdown.bg-color.transparent.opened": {
"background": "@menuBgColor"
},
"a": {
"font-style": "normal"
},
".nav-item": {
"& span": {
"padding-right": "0.4em",
"line-height": "0.5em",
"vertical-align": "text-bottom",
"position": "relative",
"text-decoration": "none"
},
"& a": {
"display": "flex",
"align-items": "center",
"justify-content": "center",
"padding": "0.7rem 0 !important",
"margin": "0rem .65rem !important"
}
},
".nav-item:focus, .nav-link:focus": {
"outline": "none"
},
".btn": {
"padding": "0.4rem 1.5rem",
".mbr-iconfont": {
"font-size": "1.6rem"
},
"display": "inline-flex",
"align-items": "center"
},
".menu-logo": {
"margin-right": "auto",
".navbar-brand": {
"display": "flex",
"margin-left": "5rem",
"padding": "0",
"transition": "padding .2s",
"min-height": "3.8rem",
"align-items": "center",
".navbar-caption-wrap": {
"display": "-webkit-flex",
"-webkit-align-items": "center",
"align-items": "center",
"word-break": "break-word",
"min-width": "7rem",
"margin": ".3rem 0",
".navbar-caption": {
"line-height": "1.2rem !important",
"padding-right": "2rem"
}
},
".navbar-logo": {
"font-size": "4rem",
"transition": "font-size 0.25s",
"& img": {
"display": "flex"
},
".mbr-iconfont": {
"transition": "font-size 0.25s"
}
}
}
},
".navbar-toggleable-sm .navbar-collapse": {
"justify-content": "flex-end",
"-webkit-justify-content": "flex-end",
"padding-right": "5rem",
"width": "auto",
".navbar-nav": {
"flex-wrap": "wrap",
"-webkit-flex-wrap": "wrap",
"padding-left": "0",
".nav-item": {
"-webkit-align-self": "center",
"align-self": "center"
}
},
".navbar-buttons": {
"padding-left": "0",
"padding-bottom": "0"
}
},
".dropdown": {
".dropdown-menu": {
"background": "@menuBgColor",
"display": "none",
"position": "absolute",
"min-width": "5rem",
"padding-top": "1.4rem",
"padding-bottom": "1.4rem",
"text-align": "left",
".dropdown-item": {
"width": "auto",
"padding": "0.235em 1.5385em 0.235em 1.5385em !important",
"&::after": {
"right": "0.5rem"
}
},
".dropdown-submenu": {
"margin": "0"
}
},
"&.open > .dropdown-menu": {
"display": "block"
}
},
".navbar-toggleable-sm": {
"&.opened:after": {
"position": "absolute",
"width": "100vw",
"height": "100vh",
"content": "''",
"background-color": "rgba(0, 0, 0, 0.1)",
"left": "0",
"bottom": "0",
"transform": "translateY(100%)",
"-webkit-transform": "translateY(100%)",
"z-index": "1000"
}
},
".navbar.navbar-short": {
"min-height": "60px",
"transition": "all .2s",
"& .navbar-toggler-right": {
"top": "20px"
},
"& .navbar-logo a": {
"font-size": "2.5rem !important",
"line-height": "2.5rem",
"transition": "font-size 0.25s",
"& .mbr-iconfont": {
"font-size": "2.5rem !important"
},
"& img": {
"height": "3rem !important"
}
},
"& .navbar-brand": {
"min-height": "3rem"
}
},
"button.navbar-toggler": {
"width": "31px",
"height": "18px",
"cursor": "pointer",
"transition": "all .2s",
"top": "1.5rem",
"right": "1rem",
"&:focus": {
"outline": "none"
},
".hamburger span": {
"position": "absolute",
"right": "0",
"width": "30px",
"height": "2px",
"border-right": "5px",
"background-color": "@hamburgerColor",
"&:nth-child(1)": {
"top": "0",
"transition": "all .2s"
},
"&:nth-child(2)": {
"top": "8px",
"transition": "all .15s"
},
"&:nth-child(3)": {
"top": "8px",
"transition": "all .15s"
},
"&:nth-child(4)": {
"top": "16px",
"transition": "all .2s"
}
}
},
"nav.opened .hamburger span": {
"&:nth-child(1)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all .2s"
},
"&:nth-child(2)": {
"-webkit-transform": "rotate(45deg)",
"transform": "rotate(45deg)",
"transition": "all .25s"
},
"&:nth-child(3)": {
"-webkit-transform": "rotate(-45deg)",
"transform": "rotate(-45deg)",
"transition": "all .25s"
},
"&:nth-child(4)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all .2s"
}
},
".collapsed": {
"&.navbar-expand": {
"flex-direction": "column"
},
".btn": {
"display": "flex"
},
".navbar-collapse": {
"display": "none !important",
"padding-right": "0 !important",
"&.collapsing,&.show": {
"display": "block !important",
".navbar-nav": {
"display": "block",
"text-align": "center",
".nav-item": {
"clear": "both",
"& when (@showButtons = false)": {
"&:last-child": {
"margin-bottom": "1rem"
}
}
}
},
".navbar-buttons": {
"text-align": "center",
"&:last-child": {
"margin-bottom": "1rem"
}
}
}
},
"button.navbar-toggler": {
"display": "block"
},
".navbar-brand": {
"margin-left": "1rem !important"
},
".navbar-toggleable-sm": {
"flex-direction": "column",
"-webkit-flex-direction": "column"
},
".dropdown": {
".dropdown-menu": {
"width": "100%",
"text-align": "center",
"position": "relative",
"opacity": "0",
"display": "block",
"height": "0",
"visibility": "hidden",
"padding": "0",
"transition-duration": ".5s",
"transition-property": "opacity,padding,height"
},
"&.open > .dropdown-menu": {
"position": "relative",
"opacity": "1",
"height": "auto",
"padding": "1.4rem 0",
"visibility": "visible"
},
".dropdown-submenu": {
"left": "0",
"text-align": "center",
"width": "100%"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]::after": {
"margin-top": "0",
"position": "inherit",
"right": "0",
"top": "50%",
"display": "inline-block",
"width": "0",
"height": "0",
"margin-left": ".3em",
"vertical-align": "middle",
"content": "\"\"",
"border-top": ".30em solid",
"border-right": ".30em solid transparent",
"border-left": ".30em solid transparent"
}
}
},
"@media (max-width: 991px)": {
".navbar-expand": {
"flex-direction": "column"
},
"img": {
"height": "3.8rem !important"
},
".btn": {
"display": "flex"
},
"button.navbar-toggler": {
"display": "block"
},
".navbar-brand": {
"margin-left": "1rem !important"
},
".navbar-toggleable-sm": {
"flex-direction": "column",
"-webkit-flex-direction": "column"
},
".navbar-collapse": {
"display": "none !important",
"padding-right": "0 !important",
"&.collapsing,&.show": {
"display": "block !important",
".navbar-nav": {
"display": "block",
"text-align": "center",
".nav-item": {
"clear": "both",
"& when (@showButtons = false)": {
"&:last-child": {
"margin-bottom": "1rem"
}
}
}
},
".navbar-buttons": {
"text-align": "center",
"&:last-child": {
"margin-bottom": "1rem"
}
}
}
},
".dropdown": {
".dropdown-menu": {
"width": "100%",
"text-align": "center",
"position": "relative",
"opacity": "0",
"display": "block",
"height": "0",
"visibility": "hidden",
"padding": "0",
"transition-duration": ".5s",
"transition-property": "opacity,padding,height"
},
"&.open > .dropdown-menu": {
"position": "relative",
"opacity": "1",
"height": "auto",
"padding": "1.4rem 0",
"visibility": "visible"
},
".dropdown-submenu": {
"left": "0",
"text-align": "center",
"width": "100%"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]::after": {
"margin-top": "0",
"position": "inherit",
"right": "0",
"top": "50%",
"display": "inline-block",
"width": "0",
"height": "0",
"margin-left": ".3em",
"vertical-align": "middle",
"content": "\"\"",
"border-top": ".30em solid",
"border-right": ".30em solid transparent",
"border-left": ".30em solid transparent"
}
}
},
"@media (min-width: 767px)": {
".menu-logo": {
"flex-shrink": "0"
}
},
".navbar-collapse": {
"flex-basis": "auto"
},
".nav-link:hover, .dropdown-item:hover": {
"color": "@itemsHoverColor !important"
}
},
"_name": "menu1",
"_customHTML": "<section class=\"menu\" group=\"Menu\" plugins=\"DropDown, TouchSwipe\" always-top global once=\"menu\" not-draggable position-absolute>\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Show Logo\" name=\"showLogo\" checked>\n <input type=\"range\" title=\"Logo Size\" inline name=\"logoSize\" min=\"3.8\" max=\"8\" step=\"0.1\" value=\"4.5\" condition=\"showLogo\">\n <input type=\"checkbox\" title=\"Show Brand Name\" name=\"showBrand\" checked>\n <input type=\"checkbox\" title=\"Show Menu Items\" name=\"showItems\" checked>\n <input type=\"color\" title=\"Items Hover Color\" name=\"itemsHoverColor\" value=\"#c1c1c1\" condition=\"showItems\">\n <input type=\"checkbox\" title=\"Show Button(s)\" name=\"showButtons\">\n <input type=\"checkbox\" title=\"Sticky\" name=\"sticky\" checked>\n <input type=\"checkbox\" title=\"Collapsed\" name=\"collapsed\">\n <input type=\"checkbox\" title=\"Transparent\" name=\"transparent\">\n <input type=\"color\" title=\"Hamburger Color\" name=\"hamburgerColor\" value=\"#ffffff\">\n <input type=\"color\" title=\"Background Color\" name=\"menuBgColor\" value=\"#333333\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <nav class=\"navbar navbar-expand beta-menu navbar-dropdown align-items-center\" mbr-class=\"{'navbar-fixed-top': sticky,\n 'navbar-toggleable-sm': !collapsed,\n 'collapsed': collapsed,\n 'bg-color transparent': transparent}\">\n <button class=\"navbar-toggler navbar-toggler-right\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarSupportedContent\" aria-controls=\"navbarSupportedContent\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n <div class=\"hamburger\">\n <span></span>\n <span></span>\n <span></span>\n <span></span>\n </div>\n </button>\n <div class=\"menu-logo\">\n <div class=\"navbar-brand\">\n <span mbr-if=\"showLogo\" class=\"navbar-logo\">\n <a href=\"index.html\">\n <img src=\"@PROJECT_PATH@/assets/images/logo-375x209.png\" alt=\"E-Universidades\" mbr-style=\"{'height': logoSize + 'rem'}\" title>\n </a>\n </span>\n <span mbr-if=\"showBrand\" mbr-buttons mbr-theme-style=\"display-5\" class=\"navbar-caption-wrap\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd,-mbrBtnRemove\"><a class=\"navbar-caption text-white\" data-app-selector=\".navbar-caption\" href=\"#top\">\n E-Universidades</a></span>\n </div>\n </div>\n <div class=\"collapse navbar-collapse\" id=\"navbarSupportedContent\">\n <ul mbr-if=\"showItems\" mbr-menu class=\"navbar-nav nav-dropdown\" mbr-theme-style=\"display-4\" mbr-class=\"{'nav-right': !showButtons,'navbar-nav-top-padding': isPublish && !showBrand && !showLogo}\"><li class=\"nav-item\"><a class=\"nav-link link text-white\" href=\"index.html\" data-app-selector=\".nav-link,.dropdown-item\">Inicio</a></li><li class=\"nav-item dropdown\">\n <a class=\"nav-link link text-white dropdown-toggle\" href=\"contenidos.html\" data-app-selector=\".nav-link,.dropdown-item\" data-toggle=\"dropdown-submenu\" aria-expanded=\"false\">Contenidos</a><div class=\"dropdown-menu\"><a class=\"text-white dropdown-item\" href=\"contenidos.html#content5-4q\" data-app-selector=\".nav-link,.dropdown-item\">Conceptos<br></a><a class=\"text-white dropdown-item\" href=\"contenidos.html#content5-4j\" data-app-selector=\".nav-link,.dropdown-item\" aria-expanded=\"false\">Comparación</a><a class=\"text-white dropdown-item\" href=\"contenidos.html#content5-4o\" data-app-selector=\".nav-link,.dropdown-item\" aria-expanded=\"false\">Ventajas</a><a class=\"text-white dropdown-item\" href=\"contenidos.html#content5-4p\" data-app-selector=\".nav-link,.dropdown-item\" aria-expanded=\"false\">Limitaciones</a><a class=\"text-white dropdown-item\" href=\"contenidos.html#content5-5i\" data-app-selector=\".nav-link,.dropdown-item\" aria-expanded=\"false\">Tendencias educativas</a><a class=\"text-white dropdown-item\" href=\"contenidos.html#content5-4r\" data-app-selector=\".nav-link,.dropdown-item\" aria-expanded=\"false\">Cursos</a></div>\n </li><li class=\"nav-item dropdown\"><a class=\"nav-link link text-white dropdown-toggle\" href=\"actividades.html\" data-app-selector=\".nav-link,.dropdown-item\" data-toggle=\"dropdown-submenu\" aria-expanded=\"false\">Actividades</a><div class=\"dropdown-menu\"><a class=\"text-white dropdown-item\" href=\"juegos.html\" data-app-selector=\".nav-link,.dropdown-item\" aria-expanded=\"true\">Juegos</a><a class=\"text-white dropdown-item\" href=\"evaluaciones.html\" data-app-selector=\".nav-link,.dropdown-item\" aria-expanded=\"false\">Evaluaciones</a></div></li><li class=\"nav-item\"><a class=\"nav-link link text-white\" href=\"bibliografia.html\" data-app-selector=\".nav-link,.dropdown-item\">Bibliografía</a></li><li class=\"nav-item\"><a class=\"nav-link link text-white\" href=\"nosotros.html\" data-app-selector=\".nav-link,.dropdown-item\">Nosotros</a></li></ul>\n <div mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" class=\"navbar-buttons mbr-section-btn\"><a class=\"btn btn-sm btn-primary\" href=\"https://mobirise.com\">\n \n Try It Now!\n </a></div>\n </div>\n </nav>\n</section>",
"_cid": "qFeciWUenw",
"_anchor": "menu1-1u",
"_protectedParams": [],
"_global": true,
"_once": "menu",
"_params": {}
},
{
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".icons-media-container": {
"display": "flex",
"justify-content": "center",
"-webkit-justify-content": "center",
"flex-direction": "row",
"-webkit-flex-direction": "row",
"flex-wrap": "wrap",
"-webkit-flex-wrap": "wrap",
"padding-top": "4rem",
".mbr-iconfont": {
"font-size": "96px",
"color": "rgb(255, 255, 255)"
},
".icon-block": {
"padding-bottom": "1rem"
}
},
".mbr-text": {
"color": "#ffffff"
},
".card": {
"padding-bottom": "1.5rem"
}
},
"_name": "header12",
"_customHTML": "<section class=\"header12\" group=\"Headers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" plugins=\"vimeo-player\" mbr-class=\"{'mbr-fullscreen': fullScreen,'mbr-parallax-background' :bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\" checked>\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n <input type=\"checkbox\" title=\"Show Icons\" name=\"showIcons\" checked>\n <input type=\"checkbox\" title=\"Show Arrow\" name=\"showArrow\">\n\n <select title=\"Columns\" name=\"cardsCount\">\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\" selected>4</option>\n </select>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/mbr-1620x1080.jpg\" selected parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#0f7699\">\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\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=\"#0f7699\" 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 <!-- End block parameters -->\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 class=\"container \">\n <div class=\"media-container\">\n <div class=\"col-md-12 align-center\">\n <h1 class=\"mbr-section-title pb-3 mbr-white mbr-bold mbr-fonts-style\" mbr-theme-style=\"display-1\" mbr-if=\"showTitle\">\n Contenidos</h1>\n <p class=\"mbr-text pb-3 mbr-white mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .mbr-section-btn\">Explora los diferentes contenidos que ofrecemos acerca de los tópicos de la educación en línea</p>\n <div class=\"mbr-section-btn align-center py-2\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\" mbr-buttons mbr-theme-style=\"display-4\">\n <a class=\"btn btn-md btn-secondary\" href=\"https://mobirise.com\">MORE</a>\n </div>\n\n <div class=\"icons-media-container mbr-white\">\n <div class=\"card col-12 col-md-6\" mbr-class=\"{'col-lg-3':cardsCount=='4', 'col-lg-4':cardsCount=='3'}\">\n <div mbr-if=\"showIcons\" class=\"icon-block\">\n <a href=\"contenidos.html#content5-4q\">\n <span mbr-icon class=\"mbr-iconfont mbri-file\"></span>\n </a>\n </div>\n <h5 mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" class=\"mbr-fonts-style\">\n Conceptos</h5>\n </div>\n\n <div class=\"card col-12 col-md-6\" mbr-class=\"{'col-lg-3':cardsCount=='4', 'col-lg-4':cardsCount=='3'}\">\n <div mbr-if=\"showIcons\" class=\"icon-block\">\n <a href=\"contenidos.html#content5-4j\">\n <span mbr-icon class=\"mbr-iconfont mbri-image-gallery\"></span>\n </a>\n </div>\n <h5 mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" class=\"mbr-fonts-style\">\n Comparación</h5>\n </div>\n\n <div class=\"card col-12 col-md-6\" mbr-class=\"{'col-lg-3':cardsCount=='4', 'col-lg-4':cardsCount=='3'}\" mbr-if=\"cardsCount>2\">\n <div mbr-if=\"showIcons\" class=\"icon-block\">\n <a href=\"contenidos.html#content5-4o\">\n <span mbr-icon class=\"mbr-iconfont mbri-features\"></span>\n </a>\n </div>\n <h5 mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" class=\"mbr-fonts-style\">\n Ventajas y Limitaciones</h5>\n </div>\n\n <div class=\"card col-12 col-md-6\" mbr-class=\"{'col-lg-3':cardsCount=='4', 'col-lg-4':cardsCount=='3'}\" mbr-if=\"cardsCount>3\">\n <div mbr-if=\"showIcons\" class=\"icon-block\">\n <a href=\"contenidos.html#content5-5i\">\n <span mbr-icon class=\"mbr-iconfont mbri-growing-chart\"></span>\n </a>\n </div>\n <h5 mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" class=\"mbr-fonts-style\">\n Tendencias educativas</h5>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n <div mbr-if=\"showArrow\" class=\"mbr-arrow hidden-sm-down\" aria-hidden=\"true\">\n <a href=\"#next\">\n <i class=\"mbri-down mbr-iconfont\"></i>\n </a>\n </div>\n</section>",
"_cid": "qFSJQxhO8j",
"_anchor": "header12-4m",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
}
},
"_name": "content5",
"_customHTML": "<section class=\"mbr-section content5\" group=\"Article\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\">\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/jumbotron.jpg\" selected parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#0f7699\">\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\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.4\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\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 class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"title col-12 col-md-8\">\n <h2 mbr-if=\"showTitle\" class=\"align-center mbr-bold mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-1\">\n ARTICLE HEADER\n </h2>\n <h3 mbr-if=\"showSubtitle\" class=\"mbr-section-subtitle align-center mbr-light mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-section-subtitle\"><b>\n Conceptos</b></h3>\n <p class=\"mbr-text align-center mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" mbr-if=\"showText\" mbr-article data-multiline>\n Shape your future web project with sharp design and refine coded functions\n </p>\n <div class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\">\n <a class=\"btn btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-white-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "qFSTJni8g4",
"_anchor": "content5-4q",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)"
},
".mbr-section-text": {
"color": "#767676",
"text-align": "left"
},
".mbr-section-subtitle": {
"color": "#767676"
},
".tabcont": {
"-webkit-justify-content": "center",
"justify-content": "center"
},
".mbr-iconfont": {
"font-size": "48px"
},
".card-img": {
"margin-bottom": "1.5rem"
},
".tab-content-row": {
"-webkit-justify-content": "center",
"justify-content": "center"
},
".tab-content": {
"margin-top": "3rem",
"width": "100%"
},
".nav-tabs": {
"-webkit-justify-content": "center",
"justify-content": "center",
"-webkit-flex-wrap": "wrap",
"flex-wrap": "wrap",
"border-bottom": "none"
},
".nav-tabs .nav-link": {
"box-sizing": "border-box",
"color": "@tabsColor",
"font-style": "normal",
"font-weight": "500",
"border-radius": "3px",
"padding": "1rem 3rem",
"margin": "0.4rem .8rem !important",
"transition": "color .3s",
"border": "2px solid @tabsColor",
"&:hover": {
"background": "@activeTabColor"
},
"&.active": {
"color": "contrast(@activeTabColor)",
"font-style": "normal",
"border": "2px solid @activeTabColor",
"background": "@activeTabColor",
"&:hover": {
"border": "2px solid @activeTabColor"
}
}
},
"H4": {
"text-align": "center"
}
},
"_name": "tabs3",
"_customHTML": "<section class=\"tabs3\" group=\"Accordion & Toggles & Tabs\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background':bg.parallax}\" plugins=\"mbr-tabs\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"0\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showHeader\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Show Icons\" name=\"showIcons\" checked>\n <input type=\"checkbox\" title=\"Show Titles\" name=\"showTitles\" checked>\n <input type=\"color\" title=\"Tabs Color\" name=\"tabsColor\" value=\"#2e2e2e\">\n <input type=\"color\" title=\"Active Tab Color\" name=\"activeTabColor\" value=\"#149dcc\">\n <select title=\"Tabs Count\" name=\"tabsCount\">\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 </select>\n <select title=\"Columns in Tabs\" name=\"columnsCount\">\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\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background1.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#ffffff\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\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.2\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\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 class=\"container\">\n <h2 class=\"mbr-section-title align-center pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showHeader\"><b>Conceptos</b><br></h2>\n <h3 class=\"mbr-section-subtitle display-5 align-center mbr-light mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\"></h3>\n </div>\n <div class=\"container-fluid\">\n <div class=\"row tabcont\">\n <ul class=\"nav nav-tabs pt-3 mt-5\" role=\"tablist\">\n <li mbr-buttons mbr-theme-style=\"display-7\" class=\"nav-item mbr-fonts-style\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrBtnColor,-mbrLink,-mbrBtnRemove\"><a class=\"nav-link active\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs3-2d_tab0\" aria-expanded=\"true\">Educación en línea</a></li>\n <li mbr-buttons mbr-if=\"tabsCount > 1\" class=\"nav-item mbr-fonts-style\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrBtnColor,-mbrLink,-mbrBtnRemove\" mbr-theme-style=\"display-7\"><a class=\"nav-link\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs3-2d_tab1\" aria-expanded=\"false\">E-Universidades</a></li>\n <li mbr-buttons mbr-if=\"tabsCount > 2\" class=\"nav-item mbr-fonts-style\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrBtnColor,-mbrLink,-mbrBtnRemove\" mbr-theme-style=\"display-7\"><a class=\"nav-link\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs3-2d_tab2\" aria-expanded=\"false\">TIC</a></li>\n <li mbr-buttons mbr-if=\"tabsCount > 3\" class=\"nav-item mbr-fonts-style\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrBtnColor,-mbrLink,-mbrBtnRemove\" mbr-theme-style=\"display-7\"><a class=\"nav-link active\" role=\"tab\" data-toggle=\"tab\" href=\"#tabs3-2d_tab3\" aria-expanded=\"true\"></a></li>\n <li mbr-buttons mbr-if=\"tabsCount > 4\" class=\"nav-item mbr-fonts-style\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrBtnColor,-mbrLink,-mbrBtnRemove\" mbr-theme-style=\"display-7\">\n <a class=\"nav-link\" role=\"tab\" data-toggle=\"tab\" href=\"#tab5\">\n No coding\n </a>\n </li>\n <li mbr-buttons mbr-if=\"tabsCount > 5\" class=\"nav-item mbr-fonts-style\" data-toolbar=\"-mbrBtnAdd,-mbrBtnMove,-mbrBtnColor,-mbrLink,-mbrBtnRemove\" mbr-theme-style=\"display-7\">\n <a class=\"nav-link\" role=\"tab\" data-toggle=\"tab\" href=\"#tab6\">\n Unique Styles\n </a>\n </li>\n </ul>\n </div>\n </div>\n\n <div class=\"container\">\n <div class=\"row px-1\">\n <div class=\"tab-content\">\n <div id=\"tab1\" class=\"tab-pane in active mbr-table\" role=\"tabpanel\">\n <div class=\"row tab-content-row\">\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-idea\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n Definición</h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">Es una modalidad de la educación a distancia; implica una nueva visión de las exigencias del entorno económico, social y político, así como de las relaciones pedagógicas y de las <b>TIC</b>. No se trata simplemente de una forma singular de hacer llegar la información a lugares distantes, sino que es toda una<b> perspectiva pedagógica</b>. <a href=\"bibliografia.html\">(MEN, 2015)[3]</a></p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 1\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-touch\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n Herramientas</h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-section-text\">Se utilizan <b>técnicas pedagógicas</b>, <b>recursos</b> y <b>medios de comunicación</b> específicos para facilitar el aprendizaje y la enseñanza entre alumnos y docentes que están separados por el tiempo o la distancia. <br><a href=\"bibliografia.html\">(UNESCO, 2017)[2]</a></p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 2\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-cursor-click\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">Curiosidades </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n A pesar de la proliferación de las tecnologías en el sector de la enseñanza, la educación a distancia en las economías en desarrollo todavía <b>depende en gran medida de materiales impresos.</b><b><br></b><i><a href=\"bibliografia.html\">(UNESCO, 2017)[2]</a></i></p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 3\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-italic\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n Más información</h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Visita el siguiente enlace para obtener mas información sobre la educación en línea</p>\n </div>\n </div>\n </div>\n\n <div id=\"tab2\" class=\"tab-pane mbr-table\" role=\"tabpanel\">\n <div class=\"row tab-content-row\">\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-idea\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-if=\"showTitles\" mbr-theme-style=\"display-5\">Definición </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">Son aquellas universidades que proveen programas de estudio de educación superior a través de medios electrónicos, típicamente el Internet.<br><a href=\"bibliografia.html\">(LEARN, 2018)[4]</a></p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 1\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-edit\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n Parciales o dedicadas</h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-section-text\">\n Algunas son instituciones tradicionales que incorporan la educacion en línea como parte adherida de sus cursos, mientras que otras son dedicadas a la educación en línea en su totalidad.<br><a href=\"bibliografia.html\">(LEARN, 2018)[4]</a> </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 2\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-delivery\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n Motivación</h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-section-text\">El objetivo de las E-Universidades es proveer acceso a la población estudiantil que no sería capaz de asistir a las instalaciones físicas de una universidad.<br><a href=\"bibliografia.html\">(LEARN, 2018)[4]</a></p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 3\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-bootstrap mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n IT'S EASY AND SIMPLE\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-section-text\">\n Cut down the development time with drag-and-drop website builder. Drop the blocks into the page, edit content inline and publish - no technical skills required.\n </p>\n </div>\n </div>\n </div>\n\n <div id=\"tab3\" class=\"tab-pane mbr-table\" role=\"tabpanel\">\n <div class=\"row tab-content-row\">\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-laptop\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">Tecnologías de la Información y la Comunicación</h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-section-text\">Las <b>TIC</b> se están imponiendo como elementos didácticos tanto en los recintos universitarios como en los sistemas de educación superior abiertos y a <b>distancia</b>.<br><a href=\"contenidos.html#table1-2o\">(</a><i><a href=\"bibliografia.html\">UNESCO, 2017)[7]</a></i> <br></p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 1\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-globe\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">¿Por qué se popularizo el uso de las TIC?</h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-section-text\">Es indudable que las <b>TIC</b> pueden ampliar el acceso de ciertos estudiantes específicos y que se han convertido en medios de realizar experiencias pedagógicas más vastas, especialmente cuando alumnos y educadores se encuentran <b>separados en tiempo y espacio.</b><b><br></b> <a href=\"contenidos.html#table1-2o\">(</a><a href=\"bibliografia.html\">UNESCO, 2017)[7]</a></p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 2\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-users\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">Como contribuyen las TIC en la educación </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-section-text\">Pueden contribuir al acceso universal a la educación, la <b>igualdad</b> en la instrucción, el ejercicio de la enseñanza y el aprendizaje de <b>calidad </b>y el desarrollo profesional de los docentes, así como a la gestión dirección y <b>administración más eficientes del sistema educativo</b>.\n<br><a href=\"contenidos.html#table1-2o\">(</a><a href=\"bibliografia.html\">UNESCO, 2017)[1]</a><br></p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 3\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-extension mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n TRENDY WEBSITE BLOCKS\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Choose from the large selection pre-made blocks - full-screen intro, bootstrap carousel, slider, responsive image gallery with, parallax scrolling, sticky header and more.\n </p>\n </div>\n </div>\n </div>\n\n <div id=\"tab4\" class=\"tab-pane mbr-table\" role=\"tabpanel\">\n <div class=\"row tab-content-row\">\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-responsive mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n MOBILE FRIENDLY\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-section-text\">\n Lorem Ipsum Lorem Ipsum Lorem Ipsum Lorem IpsumLorem Ipsum Lorem Ipsum Lorem Ipsum Lorem IpsumLorem Ipsum Lorem Ipsum Lorem Ipsum Lorem IpsumLorem Ipsum Lorem Ipsum Lorem Ipsum Lorem Ipsum \n </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 1\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-responsive mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n MOBILE FRIENDLY\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Lorem Ipsum Lorem Ipsum Lorem Ipsum Lorem IpsumLorem Ipsum Lorem Ipsum Lorem Ipsum Lorem IpsumLorem Ipsum Lorem Ipsum Lorem Ipsum Lorem IpsumLorem Ipsum Lorem Ipsum Lorem Ipsum Lorem Ipsum \n </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 2\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-responsive mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n MOBILE FRIENDLY\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Lorem Ipsum Lorem Ipsum Lorem Ipsum Lorem IpsumLorem Ipsum Lorem Ipsum Lorem Ipsum Lorem IpsumLorem Ipsum Lorem Ipsum Lorem Ipsum Lorem IpsumLorem Ipsum Lorem Ipsum Lorem Ipsum Lorem Ipsum \n </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 3\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-responsive mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n MOBILE FRIENDLY\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n No special actions required, all sites you make with Mobirise are mobile-friendly. You don't have to create a special mobile version of your site, it will adapt automagically.\n </p>\n </div>\n </div>\n </div>\n\n <div id=\"tab5\" class=\"tab-pane mbr-table\" role=\"tabpanel\">\n <div class=\"row tab-content-row\">\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-bootstrap mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n IT'S EASY AND SIMPLE\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Cut down the development time with drag-and-drop website builder. Drop the blocks into the page, edit content inline and publish - no technical skills required.\n </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 1\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-bootstrap mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n IT'S EASY AND SIMPLE\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Cut down the development time with drag-and-drop website builder. Drop the blocks into the page, edit content inline and publish - no technical skills required.\n </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 2\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-bootstrap mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n IT'S EASY AND SIMPLE\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Cut down the development time with drag-and-drop website builder. Drop the blocks into the page, edit content inline and publish - no technical skills required.\n </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 3\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-bootstrap mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n IT'S EASY AND SIMPLE\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Cut down the development time with drag-and-drop website builder. Drop the blocks into the page, edit content inline and publish - no technical skills required.\n </p>\n </div>\n </div>\n </div>\n\n <div id=\"tab6\" class=\"tab-pane mbr-table\" role=\"tabpanel\">\n <div class=\"row tab-content-row\">\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-extension mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n TRENDY WEBSITE BLOCKS\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Choose from the large selection pre-made blocks - full-screen intro, bootstrap carousel, slider, responsive image gallery with, parallax scrolling, sticky header and more.\n </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 1\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-extension mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n TRENDY WEBSITE BLOCKS\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Choose from the large selection pre-made blocks - full-screen intro, bootstrap carousel, slider, responsive image gallery with, parallax scrolling, sticky header and more.\n </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 2\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-extension mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-theme-style=\"display-5\" mbr-if=\"showTitles\">\n TRENDY WEBSITE BLOCKS\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Choose from the large selection pre-made blocks - full-screen intro, bootstrap carousel, slider, responsive image gallery with, parallax scrolling, sticky header and more.\n </p>\n </div>\n\n <div class=\"col-xs-12 col-md-6\" mbr-class=\"{'col-lg-3': columnsCount == '4','col-lg-4': columnsCount == '3'}\" mbr-if=\"columnsCount > 3\">\n <div class=\"card-img \" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbri-extension mbr-iconfont\"></span>\n </div>\n <h4 class=\"mbr-element-title align-center mbr-fonts-style pb-2\" mbr-if=\"showTitles\" mbr-theme-style=\"display-5\">\n TRENDY WEBSITE BLOCKS\n </h4>\n <p class=\"mbr-section-text align-center mbr-fonts-style\" data-app-selector=\".mbr-section-text\" mbr-theme-style=\"display-7\">\n Choose from the large selection pre-made blocks - full-screen intro, bootstrap carousel, slider, responsive image gallery with, parallax scrolling, sticky header and more.\n </p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "qFxlnEwhsV",
"_anchor": "tabs3-2d",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"& when (@bg-type = 'color')": {
"background": "linear-gradient(45deg, @bg-value, @color2)"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-figure": {
"@media (min-width: 992px)": {
"padding-left": "4rem"
},
"@media (max-width: 991px)": {
"padding-top": "3rem"
}
},
".media-container-row": {
"& when (@reverseContent)": {
"flex-direction": "row-reverse",
".mbr-figure": {
"@media (min-width: 992px)": {
"padding-left": "0",
"padding-right": "4rem"
}
}
}
},
".mbr-text, .mbr-section-btn": {
"text-align": "left"
},
".mbr-text, .mbr-section-btn B": {
"color": "#ffffff"
}
},
"_name": "header7",
"_customHTML": "<section class=\"header7\" group=\"Headers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"1\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\" condition=\"fullScreen == false\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n <input type=\"checkbox\" title=\"Media On Right/Left\" name=\"reverseContent\" checked>\n\n <input type=\"range\" inline title=\"Media Size\" name=\"mediaSize\" min=\"10\" max=\"200\" step=\"5\" value=\"60\">\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background5.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#978b63\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"color\" name=\"color2\" title=\"Color 2\" value=\"#ffffff\" condition=\"bg.type=='color'\" selected>\n\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\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.2\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\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 class=\"container\">\n <div class=\"media-container-row\">\n\n <div class=\"media-content align-right\">\n <h1 class=\"mbr-section-title mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-1\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\">\n Intro with Video\n </h1>\n <div class=\"mbr-section-text mbr-white pb-3\">\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .mbr-section-btn\"><br><br><b>\"Con el desarrollo de las TIC han crecido las oportunidades de las personas para acceder a la educación de calidad\".</b><b><br></b><b><a href=\"bibliografia.html\">(Mercadeo Opensky, 2013)[8]</a></b></p>\n </div>\n <div class=\"mbr-section-btn\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\" mbr-buttons mbr-theme-style=\"display-4\">\n <a class=\"btn btn-md btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-md btn-white-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n\n <div mbr-video class=\"mbr-figure\" mbr-style=\"{'width': mediaSize + '%'}\">\n <iframe src=\"https://www.youtube.com/watch?v=SW_esTMlu7w&loop=0&autoplay=0\"></iframe>\n </div>\n\n </div>\n </div>\n</section>",
"_cid": "qFSwC4eirt",
"_anchor": "header7-4i",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-text": {
"color": "#767676",
"text-align": "left"
},
"h4": {
"text-align": "center"
},
"p": {
"text-align": "center"
},
".card-img span": {
"font-size": "96px",
"color": "#149dcc"
},
".card-title, .card-img": {
"text-align": "center"
}
},
"_name": "features1",
"_customHTML": "<section class=\"features1\" group=\"Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"2\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"2\"> \n \n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <select title=\"Cards\" name=\"cardsAmount\">\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 </select>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/img/03.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#f2f2f2\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\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=\"#efefef\" 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 <!-- End block parameters -->\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 class=\"container\">\n <div class=\"media-container-row\">\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-img pb-3\">\n <span mbr-icon class=\"mbr-iconfont mbri-globe\"></span>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title py-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">¿Por quienes están avaladas las <br>E-Universidades?</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">Sí bien siempre existió el prejuicio de que este tipo de programas no dan al estudiante la misma capacitación, perfil o rendimiento que dan la educación tradicional de un aula de clases, en los últimos tiempos esto ha cambiado, ¿la razón? estamos en lo que se denomina sociedad globalizada, prestigiosas Universidades de alta reputación como la Universidad de Yale, Oxford se dieron cuenta que la evolución natural de los estudios y cátedras irán acompañados de la tecnología bien sea de manera presencial o de manera remota.</p>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 1\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-img pb-3\">\n <span mbr-icon class=\"mbri-touch mbr-iconfont\"></span>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title py-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">¿A qué público están <br>dirigidas las E-Universidades?</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">La modalidad E-Universidades o la educación en línea son modalidades inclusivas ya que no existe limitante ni de edad, género, cultura, estatus social solo requiere que el asistente este realmente interesado.</p>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 2\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-img pb-3\">\n <span mbr-icon class=\"mbr-iconfont mbri-users\"></span>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title py-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">¿A qué público van dirigidas?</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">La modalidad e-universidades o la <i>e-learning</i> son modalidades <b>inclusivas</b> ya que no existe limitante ni de edad, género, cultura, estatus social y está enfocada en varias de las tendencias que se proyectan para la educación futura. <br></p>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 3\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-img pb-3\">\n <span mbr-icon class=\"mbri-desktop mbr-iconfont\"></span>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title py-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n Unlimited Sites\n </h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Mobirise gives you the freedom to develop as many websites as you like given the fact that it is a desktop app.\n </p>\n </div>\n </div>\n\n </div>\n\n </div>\n\n</section>",
"_cid": "qFRJaI8Sah",
"_anchor": "features1-3j",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".line": {
"background-color": "@lineColor",
"color": "@lineColor",
"align": "center",
"height": "2px",
"margin": "0 auto"
},
".section-text": {
"padding": "2rem 0"
},
".inner-container": {
"margin": "0 auto"
},
"@media (max-width: 768px)": {
".inner-container": {
"width": "100% !important"
}
}
},
"_name": "content9",
"_customHTML": "<section class=\"mbr-section article content9\" group=\"Article\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"range\" inline title=\"Text Width\" name=\"innerWidth\" min=\"50\" max=\"100\" step=\"1\" value=\"100\">\n <input type=\"range\" inline title=\"Line Width\" name=\"lineLength\" min=\"10\" max=\"100\" step=\"1\" value=\"57\">\n <input type=\"color\" title=\"Line Color\" name=\"lineColor\" value=\"#b2ccd2\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"inner-container\" mbr-style=\"{'width': innerWidth + '%'}\">\n <hr class=\"line\" mbr-style=\"{'width': lineLength + '%'}\">\n <div class=\"section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".section-text\" mbr-text>\"<i>Aprendizaje de libre acceso y a distancia</i>\"<br><a href=\"bibliografia.html\">(UNESCO, 2004)[2].</a><br></div>\n <hr class=\"line\" mbr-style=\"{'width': lineLength + '%'}\">\n </div>\n </div>\n</section>",
"_cid": "qFLVjNZy2V",
"_anchor": "content9-2q",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
},
".mbr-text P": {
"text-align": "center"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#f2f2f2\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><p><b>¿Cuál es el nivel de confianza que poseen las E-Universidades?</b></p><p></p></div>\n </div>\n </div>\n</section>",
"_anchor": "content1-53",
"_isUserblock": true,
"_cid": "qFTgZqgysu",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
"@media (min-width: 992px)": {
".mbr-figure": {
"padding-right": "4rem"
}
},
"@media (max-width: 992px)": {
".mbr-figure": {
"padding-bottom": "1rem"
}
},
".mbr-text": {
"color": "#767676",
"text-align": "left"
}
},
"_name": "content6",
"_customHTML": "<section class=\"mbr-section content6\" group=\"Article\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n\n <input type=\"range\" inline title=\"Media Size\" name=\"mediaSize\" min=\"10\" max=\"200\" step=\"5\" value=\"125\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#f2f2f2\">\n <!-- End block parameters -->\n </mbr-parameters> \n \n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"col-12 col-md-8\">\n <div class=\"media-container-row\">\n <div class=\"mbr-figure\" mbr-style=\"{'width': mediaSize + '%'}\">\n <img src=\"@PROJECT_PATH@/assets/images/confianza-en-uno-mismo1111-1-680x450.jpg\" alt=\"Mobirise\" title=\"[Fig. 4]\"> \n </div>\n <div class=\"media-content\">\n <div class=\"mbr-section-text\">\n <p class=\"mbr-text mb-0 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">El nivel de confianza como algo subjetivo podría ser el que se decida establecer sobre la institución que brindó la certificación. Pero solo la confianza que se le dé en un primer momento al egresado es la que probara sus conocimientos aplicados a su futuro desempeño en el trabajo. <br></p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "qFS8tBuhss",
"_anchor": "content6-4d",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
},
".mbr-text P": {
"text-align": "center"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#f2f2f2\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><p><b>¿Cómo es la influencia de la Tecnología en las E-Universidades?</b></p><p></p></div>\n </div>\n </div>\n</section>",
"_anchor": "content1-54",
"_isUserblock": true,
"_cid": "qFThgt2Oee",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
},
".mbr-text DIV": {
"text-align": "left"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#f2f2f2\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><p><span style=\"font-size: 1rem;\">Estudiar en línea te ayuda a desarrollar ciertas competencias como la administración del tiempo, trabajo en ambientes virtuales, autogestión y desarrollo de habilidades de investigación, sin limitaciones. Cada quien se propone al emprender este tipo de capacitación sus objetivos a lograr, permitiendo que el aprendizaje sea continuo y no se quede en el periodo de bachiller o básico de una persona.</span><br></p><p></p></div>\n </div>\n </div>\n</section>",
"_cid": "qFRKtuWaMf",
"_anchor": "content1-3n",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
"@media (min-width: 992px)": {
".mbr-figure": {
"padding-left": "4rem"
}
},
"@media (max-width: 992px)": {
".mbr-figure": {
"padding-top": "1rem"
}
},
".mbr-text": {
"color": "#767676",
"text-align": "left"
}
},
"_name": "content7",
"_customHTML": "<section class=\"mbr-section content7\" group=\"Article\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) --> \n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"4\">\n <input type=\"range\" inline title=\"Media Size\" name=\"mediaSize\" min=\"10\" max=\"200\" step=\"5\" value=\"95\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#f2f2f2\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"col-12 col-md-8\">\n <div class=\"media-container-row\">\n <div class=\"media-content\">\n <div class=\"mbr-section-text\">\n <p class=\"mbr-text align-right mb-0 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\">Los programas están diseñados para que sean <b>dinámicos y que faciliten el aprendizaje</b>. Las plataformas usadas te permiten ingresar a tus contenidos y programar tus sesiones.<br><br>Si eres de los que piensa que estudiar en esta modalidad va a ser más fácil. Estas en un error. Se debe diferenciar lo “fácil” de las ventajas que este tipo de modalidades brinda. <br></p>\n </div>\n </div>\n <div class=\"mbr-figure\" mbr-style=\"{'width': mediaSize + '%'}\">\n <img src=\"@PROJECT_PATH@/assets/images/shutterstock-378174187-640x635.jpg\" alt=\"Mobirise\" title=\"[Fig. 5]\"> \n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "qFS8UFApsj",
"_anchor": "content7-4e",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
}
},
"_name": "content5",
"_customHTML": "<section class=\"mbr-section content5\" group=\"Article\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\">\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/jumbotron.jpg\" selected parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#0f7699\">\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\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.4\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\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 class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"title col-12 col-md-8\">\n <h2 mbr-if=\"showTitle\" class=\"align-center mbr-bold mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-1\">\n ARTICLE HEADER\n </h2>\n <h3 mbr-if=\"showSubtitle\" class=\"mbr-section-subtitle align-center mbr-light mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-section-subtitle\"><b>\n Comparación</b></h3>\n <p class=\"mbr-text align-center mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" mbr-if=\"showText\" mbr-article data-multiline>\n Shape your future web project with sharp design and refine coded functions\n </p>\n <div class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\">\n <a class=\"btn btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-white-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "qFSIYuUhW3",
"_anchor": "content5-4j",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-section-subtitle": {
"color": "#767676"
},
".container-table": {
"margin": "0 auto"
},
".scroll": {
"overflow-x": "auto",
"padding": "0"
},
".dataTables_wrapper": {
"display": "block",
".search": {
"margin-bottom": ".5rem"
},
".table": {
"overflow-x": "auto"
}
},
"table": {
"width": "100% !important",
"margin-top": "6px",
"border": "1px solid @tbColor",
"margin-bottom": "0",
"th": {
"border-top": "none",
"transition": "all .2s",
"border-bottom": "none",
"&:hover": {
"background": "@tbColor",
"color": "contrast(@tbColor)"
}
},
"td": {
"border-top": "1px solid @tbColor"
},
"&.table": {
"& when (@tbBackground)": {
"background": "@tbBgColor"
}
}
},
".dataTables_filter": {
"text-align": "right",
"margin-bottom": ".5rem",
"label": {
"display": "inline",
"white-space": "normal !important"
},
"input": {
"display": "inline",
"width": "auto",
"margin-left": ".5rem",
"border-radius": "100px",
"padding-left": "1rem"
}
},
".dataTables_info": {
"padding-bottom": "1rem",
"padding-top": "1rem",
"white-space": "normal !important"
},
"@media (max-width: 992px)": {
".dataTables_filter": {
"text-align": "center"
}
},
"@media (max-width: 350px)": {
".dataTables_filter": {
"text-align": "center",
"input": {
"width": "100% !important",
"margin-left": "0 !important"
}
}
},
".mbr-section-title": {
"text-align": "center"
}
},
"_name": "table1",
"_customHTML": "<section class=\"section-table\" group=\"Tables\" plugins=\"dataTables\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"range\" inline title=\"Columns\" name=\"tableColumns\" min=\"1\" max=\"50\" step=\"1\" value=\"4\">\n <input type=\"range\" inline title=\"Rows\" name=\"tableRows\" min=\"1\" max=\"50\" step=\"1\" value=\"10\">\n <input type=\"color\" title=\"Table Border Color\" name=\"tbColor\" value=\"#cccccc\">\n <input type=\"checkbox\" title=\"Table Background\" name=\"tbBackground\" checked>\n <input type=\"color\" title=\"Table Background Color\" name=\"tbBgColor\" value=\"#ffffff\" condition=\"tbBackground\">\n <input type=\"checkbox\" title=\"Search\" name=\"isSearch\">\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background1.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#ffffff\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" 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 <!-- End block parameters -->\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 class=\"container container-table\">\n <h2 class=\"mbr-section-title mbr-fonts-style align-center pb-3\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-section-title\" mbr-if=\"showTitle\">Educación en línea frente a la educación tradicional</h2>\n <h3 class=\"mbr-section-subtitle mbr-fonts-style align-center pb-5 mbr-light\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">Sí bien las dos pueden coexistir aquí señalamos algunos tópicos interesantes</h3>\n <div class=\"table-wrapper\">\n <div class=\"container\">\n <div class=\"row search\" mbr-if=\"isSearch\">\n <div class=\"col-md-6\"></div>\n <div class=\"col-md-6\">\n <div class=\"dataTables_filter\">\n <label mbr-text class=\"searchInfo mbr-fonts-style\" mbr-theme-style=\"display-7\">Buscar:</label>\n <input class=\"form-control input-sm\" disabled>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"container scroll\">\n <table class=\"table\" mbr-class=\"{'isSearch':isSearch}\" cellspacing=\"0\">\n <thead>\n <tr class=\"table-heads \" mbr-list mbr-list-grow=\"tableColumns\">\n <th mbr-text class=\"head-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".head-item\">Educación Presencial</th>\n <th mbr-text class=\"head-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".head-item\"></th>\n <th mbr-text class=\"head-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".head-item\">Educación en Línea</th>\n <th mbr-text class=\"head-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".head-item\"></th>\n </tr>\n </thead>\n\n <tbody mbr-list mbr-list-grow=\"tableRows\">\n <tr mbr-list mbr-list-grow=\"tableColumns\"> \n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El docente y los alumnos están físicamente <br>presentes en un mismo espacio-tiempo <br>durante las clases.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El docente y los alumnos pueden no estar presentes <br>físicamente en el mismo espacio ni en el mismo tiempo.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr>\n <tr mbr-list mbr-list-grow=\"tableColumns\">\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">Restringe la comunicación a un lugar y a un espacio <br>de tiempo.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">La comunicación se establece mediante elementos <br>acordados o pre-establecidos entre el docente y <br>el alumno como lo es el correo por ejemplo.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr>\n <tr mbr-list mbr-list-grow=\"tableColumns\">\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">La relación directa presencial de los que se comunican es a <br>través del diálogo directo.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">Los medios no presenciales son portadores del <br>conocimiento que \"sustituye al profesor\".</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr>\n <tr mbr-list mbr-list-grow=\"tableColumns\">\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">Alumno como ente pasivo que recibe la información del <br>experto en este caso el rol del profesor.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">Los medios audiovisuales son el medio por el cual <br>se transmite la información.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr>\n <tr mbr-list mbr-list-grow=\"tableColumns\">\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">Es orientada al tipo de memoria de repetición mediante <br>la voz del profesor como hilo conductor.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El comunicador en este caso el rol docente debe elaborar <br>un mensaje completo esperar un tiempo para recibir el <br><i>feedback</i> de a quien se lo comunicó.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr><tr mbr-list mbr-list-grow=\"tableColumns\">\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">Metodología expositiva.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">Metodología innovadora, participativa, interactiva e inclusiva.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr><tr mbr-list mbr-list-grow=\"tableColumns\">\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El conocimiento es depositado en los cuadernos <br>para luego ser revisado.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El aprendizaje se logra por medio del desarrollo de <br>habilidades, solución de problemas, construcción <br>del conocimiento y creatividad.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr><tr mbr-list mbr-list-grow=\"tableColumns\">\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El aprendizaje se realiza a través de hechos y <br>de memorización.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El aprendizaje es constructivo y es asimilativo.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr><tr mbr-list mbr-list-grow=\"tableColumns\">\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El texto como fuente primaria.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El docente es el facilitador el guía y el alumno es el <br>constructor de su propio aprendizaje.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr><tr mbr-list mbr-list-grow=\"tableColumns\">\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">Los profesores apoyan la realización de su clase <br>a través del contacto visual es decir presencial al observar la conducta de sus estudiantes.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\">El maestro a distancia tiene muy poco o ningún <br>contacto visual con sus alumnos, además los pocos <br>contactos que tienen son distorsionados por problemas inherentes a la red de comunicación.</td>\n <td mbr-text class=\"body-item mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".body-item\"></td>\n </tr></tbody>\n </table>\n </div>\n <div class=\"container table-info-container\">\n <div class=\"row info\" mbr-if=\"isSearch\">\n <div class=\"col-md-6\">\n <div class=\"dataTables_info mbr-fonts-style\" mbr-theme-style=\"display-7\">\n <span mbr-text class=\"infoBefore\" data-app-selector=\".dataTables_info\">Showing</span>\n <span class=\"inactive infoRows\"></span>\n <span mbr-text class=\"infoAfter\" data-app-selector=\".dataTables_info\">entries</span>\n <span mbr-text class=\"infoFilteredBefore\" data-app-selector=\".dataTables_info\">(filtered from</span>\n <span class=\"inactive infoRows\"></span>\n <span mbr-text class=\"infoFilteredAfter\" data-app-selector=\".dataTables_info\"> total entries)</span>\n </div>\n </div>\n <div class=\"col-md-6\"></div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "qFRJjGROm0",
"_anchor": "table1-3l",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".line": {
"background-color": "@lineColor",
"color": "@lineColor",
"align": "center",
"height": "2px",
"margin": "0 auto"
},
".section-text": {
"padding": "2rem 0",
"text-align": "center"
},
".inner-container": {
"margin": "0 auto"
},
"@media (max-width: 768px)": {
".inner-container": {
"width": "100% !important"
}
}
},
"_name": "content9",
"_customHTML": "<section class=\"mbr-section article content9\" group=\"Article\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Text Width\" name=\"innerWidth\" min=\"50\" max=\"100\" step=\"1\" value=\"100\">\n <input type=\"range\" inline title=\"Line Width\" name=\"lineLength\" min=\"10\" max=\"100\" step=\"1\" value=\"25\">\n <input type=\"color\" title=\"Line Color\" name=\"lineColor\" value=\"#f2f2f2\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#f2f2f2\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"inner-container\" mbr-style=\"{'width': innerWidth + '%'}\">\n <hr class=\"line\" mbr-style=\"{'width': lineLength + '%'}\">\n <div class=\"section-text align-center mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".section-text\" mbr-text><i><b> “La educación en línea te da más facilidades para que estudies. Pero esto no significa que sea más fácil”.</b></i><br><a href=\"bibliografia.html\">(Raúl Cicero)[6]</a></div>\n <hr class=\"line\" mbr-style=\"{'width': lineLength + '%'}\">\n </div>\n </div>\n</section>",
"_cid": "qFTgfhQeM0",
"_anchor": "content9-52",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",