-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-code.xml
4408 lines (4049 loc) · 173 KB
/
template-code.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:version='2' class='v2' xmlns='https://www.w3.org/1999/xhtml' xmlns:b='https://www.google.com/2005/gml/b' xmlns:data='https://www.google.com/2005/gml/data' xmlns:expr='https://www.google.com/2005/gml/expr' expr:dir='data:blog.languageDirection' expr:lang='data:blog.locale' b:templateUrl='indie.xml'>
<!--
<head>
-->
<head>
<b:if cond='false'><!--amp-enabled-start--></b:if><b:if cond='false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--amp-enabled-end--></b:if>
<b:else/>
<link rel="preload" href="https://google-git.github.io/icon/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<noscript><link rel="stylesheet" href="https://google-git.github.io/icon/icon/css/all.min.css"/></noscript>
<!-- <link rel="preload" href="https://google-git.github.io/icon/icon/v4-shims.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<noscript><link rel="stylesheet" href="https://google-git.github.io/icon/icon/v4-shims.css"/></noscript> -->
<b:loop values='{
"//github.io",
"//1.bp.blogspot.com",
"//28.2bp.blogspot.com",
"//3.bp.blogspot.com",
"//4.bp.blogspot.com",
"//www.blogger.com",
"//maxcdn.bootstrapcdn.com",
"//fonts.googleapis.com",
"//use.fontawesome.com",
"//ajax.googleapis.com",
"//resources.blogblog.com",
"//www.facebook.com",
"//plus.google.com",
"//twitter.com",
"//www.youtube.com",
"//feedburner.google.com",
"//www.pinterest.com",
"//www.linkedin.com",
"//www.behance.net",
"//feeds.feedburner.com",
"//github.com",
"//player.vimeo.com",
"//platform.twitter.com",
"//apis.google.com",
"//connect.facebook.net",
"//cdnjs.cloudflare.com",
"//www.google-analytics.com",
"//pagead2.googlesyndication.com",
"//googleads.g.doubleclick.net",
"//www.gstatic.com",
"//www.googletagservices.com",
"//static.xx.fbcdn.net",
"//tpc.googlesyndication.com",
"//syndication.twitter.com",
"//w.sharethis.com",
"//edge.sharethis.com",
"//t.sharethis.com",
"//x.disq.us",
"//s7.addthis.com"}' var='link'><link expr:href='data:link' rel='dns-prefetch'/></b:loop>
</b:if>
<meta charset='utf-8'/>
<!--magone-theme-color--><meta content='#ff6200' name='theme-color'/>
<meta content='width=device-width,initial-scale=1.0,minimum-scale=1.0' name='viewport'/>
<b:if cond='false'><!--amp-enabled-start--></b:if><b:if cond='false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--amp-enabled-end--></b:if>
<link expr:href='data:blog.canonicalUrl' rel="canonical" />
<b:else/>
<b:comment>
We using async and 2.2.4 jQuery for all pages since 6.9.46
<b:if cond='data:blog.pageType in {"static_page","item"}'>
<script type="text/javascript" src='https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.js'/>
<b:else/>
<script type="text/javascript" src='https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.js' async=''/>
</b:if>
</b:comment>
<script type="text/javascript" src='https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.js' async=''/>
<script type="text/javascript" src='https://tiennguyenvan.github.io/cdn/magone/6.9.9632/owl.min.js' async=''/>
<!-- <script type="text/javascript" src='https://sneeit/blogger-theme-magone/src/owl.min.js' async=''/> -->
<script id='main-js' type="text/javascript" src='https://tiennguyenvan.github.io/cdn/magone/6.9.9632/main.js' async=''/>
<!-- <script id='main-js' type="text/javascript" src='https://sneeit/blogger-theme-magone/build/main.js' async=''/> -->
<b:include data='blog' name='all-head-content'/>
<title>
<b:if cond='data:blog.pageType == "index"'>
<data:blog.pageTitle/>
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<b:if cond='false'><!--dis-blog-title-from-item-title-start--></b:if><b:if cond='false'><b:if cond='false'><!--dis-blog-title-from-item-title-end--></b:if>
<data:blog.pageName/>
<b:else/>
<data:blog.pageName/> | <data:blog.title/>
</b:if>
<b:else/>
404 | <data:blog.title/>
</b:if>
</b:if>
</title>
<b:if cond='data:blog.pageType == "item"'>
<meta property="og:type" content="article" />
<b:else/>
<meta property="og:type" content="website" />
</b:if>
<b:if cond='data:blog.postImageUrl != ""'>
<meta expr:content='resizeImage(
data:blog.postImageUrl, 600, "600:315"
)' property='og:image'/>
<meta expr:content='600' property='og:image:width'/>
<meta expr:content='315' property='og:image:height'/>
<meta expr:content='resizeImage( data:blog.postImageUrl, 1200, "1200:630" )' property='twitter:image'/>
<meta content='summary_large_image' name='twitter:card'/>
<link rel="preload" as="image" expr:href='data:blog.postImageUrl'/>
</b:if>
<meta property="og:site_name" expr:content='data:blog.title' />
<b:if cond='false'><!--amp-enabled-start--></b:if><b:if cond='false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--amp-enabled-end--></b:if>
<b:if cond='data:blog.pageType == "index"'>
<meta property="og:title" expr:content='data:blog.pageTitle' />
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<b:if cond='false'><!--dis-blog-title-from-item-title-start--></b:if><b:if cond='false'><b:if cond='false'><!--dis-blog-title-from-item-title-end--></b:if>
<meta property="og:title" expr:content='data:blog.pageName' />
<b:else/>
<meta property="og:title" expr:content='data:blog.pageName + " | " + data:blog.title' />
</b:if>
</b:if>
</b:if>
<b:if cond='data:blog.metaDescription != ""'>
<meta property='og:description' expr:content='data:blog.metaDescription' />
<meta property='description' expr:content='data:blog.metaDescription' />
</b:if>
<meta property="og:url" expr:content='data:blog.url' />
<!--
<style></style>
-->
<script async="" custom-element="amp-anim" src="https://cdn.ampproject.org/v0/amp-anim-0.1.js"></script>
<script async="" custom-element="amp-iframe" src="https://cdn.ampproject.org/v0/amp-iframe-0.1.js"></script>
<script async="" custom-element="amp-youtube" src="https://cdn.ampproject.org/v0/amp-youtube-0.1.js"></script>
<!--amp-ad-client-start--><b:with value='""' var='amp_ad_client'><!--amp-ad-client-end-->
<b:if cond='data:amp_ad_client'>
<!--amp-ad-slot-1-start--><b:with value='""' var='amp_ad_slot_1'><!--amp-ad-slot-1-end-->
<!--amp-ad-slot-2-start--><b:with value='""' var='amp_ad_slot_2'><!--amp-ad-slot-2-end-->
<!--amp-ad-slot-3-start--><b:with value='""' var='amp_ad_slot_3'><!--amp-ad-slot-3-end-->
<b:if cond='data:amp_ad_slot_1 or data:amp_ad_slot_2 or data:amp_ad_slot_3'>
<script async="" custom-element="amp-ad" src="https://cdn.ampproject.org/v0/amp-ad-0.1.js"></script>
<b:if cond='data:amp_ad_slot_3'>
<script async="" custom-element="amp-sticky-ad" src="https://cdn.ampproject.org/v0/amp-sticky-ad-1.0.js"></script>
</b:if>
</b:if>
</b:with></b:with></b:with>
<script async="" custom-element="amp-auto-ads" src="https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js"></script>
</b:if>
</b:with>
<!--<script async="" custom-element="amp-script" src="https://cdn.ampproject.org/v0/amp-script-0.1.js"></script>-->
<style amp-boilerplate="">body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate="">body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
<script async="" src="https://cdn.ampproject.org/v0.js"></script>
<style amp-custom=''>
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
padding-left: 16px;
}
p {
margin: 1em 0 0 0;
padding: 0 16px;
}
h1 {
margin: 20px 0 0 0;
padding: 20px 20px 0 20px;
font-size: 40px;
font-weight: normal;
}
.post-body {
line-height: 1.7em;
padding: 20px;
}
.amp-logo {
font-size: 20px;
display: block;
background: #FF3D00;
color: #fff;
padding: 20px;
text-decoration: none;
font-weight: bold;
text-align: center;
}
.amp-redirect {
text-align: center;
display: block;
font-size: 10px;
margin: 20px 0;
font-weight: bold;
}
.post-body {
width: auto;
}
.post-body img {
display: block;
margin: auto;
max-width: 100%;
height: auto;
}
.post-body amp-img {
}
noscript.amp,
.no-amp {
display: none;
}
table.tr-caption-container,
table.tr-caption-container tbody,
table.tr-caption-container tr,
table.tr-caption-container td {
display: block;
}
.tr-caption {
text-align: center;
font-size: 80%;
opacity: 0.6;
font-style: italic;
margin: 10px 0 0 0;
}
</style>
<b:else/>
<!-- <b:if cond='data:blog.pageType == "item" and data:blog.url == data:blog.homepageUrl'>
<b:else/>
<meta property='fb:app_id' content='<b:if cond='false'></b:if>403849583055028<b:if cond='false'></b:if>'/>
</b:if>
<script type='text/javascript'>var FACEBOOK_APP_ID = '<b:if cond='false'></b:if>403849583055028<b:if cond='false'></b:if>';</script>-->
</b:if>
</b:if>
<!--dis-bing-index-archive-pages-start--><b:if cond='false'><!--dis-bing-index-archive-pages-end-->
<b:if cond='data:blog.pageType == "index" and data:blog.url != data:blog.homepageUrl'>
<meta content='noindex, nofollow' name='robots'/>
</b:if>
</b:if>
<b:if cond='false'><!--amp-enabled-start--></b:if><b:if cond='false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--amp-enabled-end--></b:if>
<!--
<b:else/>
<b:skin><![CDATA[/*
-----------------------------------------------------------------------------
Template Name: MagOne
Template URI: https://sneeit.com/magone-multi-purpose-blogger-magazine-template/
Author: Tien Nguyen
Author URI: https://sneeit.com
Description: MagOne - Responsive Newspaper and Magazine Blogger Template
Version: 6.9.9632
- Fix: not showing archive page correctly
-----------------------------------------------------------------------------
----------------------------------------------------------------------------- */
/* Variable definitions
=======================
<Variable name="keycolor" description="Main Color" type="color" default="#FF3D00" value="#FF3D00"/>
<Group description="Site" selector="body">
<Variable name="body.font" description="Font" type="font" default="normal normal 12px 'Roboto', sans-serif" value="normal normal 12px 'Roboto', sans-serif"/>
<Variable name="site.text.color" description="Text Color" type="color" default="#000000" value="#000000"/>
<Variable name="body.text.font" description="MagOne Body Font" type="font" default="15px Roboto, sans-serif" value="15px Roboto, sans-serif"/>
<Variable name="body.link.color" description="MagOne Body Link color" type="color" default="#2196f3" value="#2196f3"/>
</Group>
<Group description="Backgrounds" selector="body">
<Variable name="body.background.color" description="Body Background" type="color" default="#efefef" value="#efefef"/>
<Variable name="content.background.color" description="Entire Blog Background" type="color" default="#efefef" value="#efefef"/>
<Variable name="header.background.color" description="Header Background" type="color" default="#ffffff" value="#ffffff"/>
</Group>
<Group description="Menu" selector="#PageList1">
<Variable name="menufont" description="Menu Main Items Font" type="font" default="normal bold 14px 'Roboto', sans-serif" value="normal bold 14px 'Roboto', sans-serif"/>
<Variable name="menucolor" description="Menu Main Items Color" type="color" default="#000000" value="#000000"/>
<Variable name="menucolorhover" description="Menu Main Items Hover Color" type="color" default="#777777" value="#777777"/>
<Variable name="menubackground" description="Menu Main Items Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="menubackgroundhover" description="Menu Main Items Hover Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="menusubcolor" description="Menu Sub Items Color" type="color" default="#cccccc" value="#cccccc"/>
<Variable name="menusubcolorhover" description="Menu Sub Items Hover Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="menusubbackground" description="Menu Sub Items Background" type="color" default="#333333" value="#333333"/>
<Variable name="menucurcolor" description="Selected Menu Main Item Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="menucurbackground" description="Selected Menu Main Item Background" type="color" default="#FF3D00" value="#FF3D00"/>
</Group>
<Group description="Links" selector="body">
<Variable name="link.color" description="Link Color" type="color" default="$(keycolor)" value="$(keycolor)"/>
<Variable name="link.visited.color" description="Visited Color" type="color" default="#EA3A00" value="#EA3A00"/>
<Variable name="link.hover.color" description="Hover Color" type="color" default="#FF4D11" value="#FF4D11"/>
</Group>
<Group description="Widgets - Gadgets" selector="#primary .widget">
<Variable name="wid.bg.color" description="Widget Background Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="feedwid.title.font" description="Article Widgets Title" type="font" default="normal bold 23px 'Roboto', sans-serif" value="normal bold 23px 'Roboto', sans-serif"/>
<Variable name="sidewid.title.font" description="Right Sidebar Widgets Title" type="font" default="normal normal 16px 'Roboto', sans-serif" value="normal normal 16px 'Roboto', sans-serif"/>
<Variable name="blockitembghv" description="Background of Items in Blocks when Hover" type="color" default="#000000" value="#000000"/>
</Group>
<Group description="Post" selector="h1.post-title">
<Variable name="post.title.font" description="Post Title" type="font" default="normal normal 40px 'Roboto', sans-serif" value="normal normal 40px 'Roboto', sans-serif"/>
<Variable name="post.body.font" description="Post Body" type="font" default="normal normal 16px 'Roboto', sans-serif" value="normal normal 16px 'Roboto', sans-serif"/>
</Group>
<Group description="Slider" selector=".widget.slider">
<Variable name="slider.title.font" description="Slider Item Title" type="font" default="normal 400 30px 'Roboto', sans-serif" value="normal 400 30px 'Roboto',
sans-serif"/>
<Variable name="posts.title.color" description="MagOne Post title color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="posts.icons.color" description="MagOne Post icons color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="tabs.font" description="MagOne Tabs Font" type="font" default="700 normal 15px Roboto" value="700 normal 15px Roboto"/>
<Variable name="labels.text.color" description="MagOne Label text color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="labels.background.color" description="MagOne Label bg color" type="color" default="#ffffff" value="#ffffff"/>
</Group>
<Variable name="body.background" description="Body Background" type="background"
color="$(body.background.color)" default="$(color) none repeat scroll top left" value="$(color) none repeat scroll top left"/>
<Variable name="body.background.override" description="Body Background Override" type="string" default="" value=""/>
<Variable name="body.background.gradient.cap" description="Body Gradient Cap" type="url"
default="url(//www.blogblog.com/1kt/simple/gradients_light.png)" value="url(//www.blogblog.com/1kt/simple/gradients_light.png)"/>
<Variable name="body.background.gradient.tile" description="Body Gradient Tile" type="url"
default="url(//www.blogblog.com/1kt/simple/body_gradient_tile_light.png)" value="url(//www.blogblog.com/1kt/simple/body_gradient_tile_light.png)"/>
<Group description="Dark Mode Site" selector="site">
<Variable name="darkkeycolor" description="Main Color for Dark Mode" type="color" default="#f6aa63" value="#f6aa63"/>
<Variable name="darksite.text.color" description="Text Color for Dark Mode" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="darkbody.background.color" description="Body Background for Dark Mode" type="color" default="#333333" value="#333333"/>
<Variable name="darkcontent.background.color" description="Entire Blog Background for Dark Mode" type="color" default="#212121" value="#212121"/>
<Variable name="darkheader.background.color" description="Header Background for Dark Mode" type="color" default="#181818" value="#181818"/>
<Variable name="darkmenucolor" description="Menu Main Items Color for Dark Mode" type="color" default="#eeeeee" value="#eeeeee"/>
<Variable name="darkmenucolorhover" description="Menu Main Items Hover Color for Dark Mode" type="color" default="#cccccc" value="#cccccc"/>
<Variable name="darkmenubackground" description="Menu Main Items Background for Dark Mode" type="color" default="#181818" value="#181818"/>
<Variable name="darkmenubackgroundhover" description="Menu Main Items Hover Background for Dark Mode" type="color" default="#121212" value="#121212"/>
<Variable name="darkmenusubcolor" description="Menu Sub Items Color for Dark Mode" type="color" default="#cccccc" value="#cccccc"/>
<Variable name="darkmenusubcolorhover" description="Menu Sub Items Hover Color for Dark Mode" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="darkmenusubbackground" description="Menu Sub Items Background for Dark Mode" type="color" default="#333333" value="#333333"/>
<Variable name="darkmenucurcolor" description="Selected Menu Main Item Color for Dark Mode" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="darkmenucurbackground" description="Selected Menu Main Item Background for Dark Mode" type="color" default="#f6aa63" value="#f6aa63"/>
<Variable name="darklink.color" description="Link Color for Dark Mode" type="color" default="$(darkkeycolor)" value="$(darkkeycolor)"/>
<Variable name="darklink.visited.color" description="Visited Color for Dark Mode" type="color" default="#d8873a" value="#d8873a"/>
<Variable name="darklink.hover.color" description="Hover Color for Dark Mode" type="color" default="#ffbb7b" value="#ffbb7b"/>
<Variable name="darkwid.bg.color" description="Widget Background Color for Dark Mode" type="color" default="#181818" value="#181818"/>
<Variable name="posts.background.color" description="MagOne Blogger Comment Form Background Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="body.text.color" description="MagOne Comment Form Text Color" type="color" default="#000000" value="#000000"/>
</Group>
*/
/*Variable Apply Here*/
a:link {text-decoration:none;color: $(link.color);}
[data-mode="dark"] a:link {color: $(darklink.color);}
a:visited {text-decoration:none;color: $(link.visited.color);}
[data-mode="dark"] a:visited {color: $(darklink.visited.color);}
a:hover {color: $(link.hover.color); border-color: inherit!important}
body {font: $(body.font);color: $(site.text.color);background: $(body.background);$(body.background.override)}
.header-button .inner span, .header-social-icons ul li a, .header-social-icons ul li a:link, input,
.tab-link.active .tab-link-inner, .feed.widget.ticker .item-title a, .feed.widget.list .item-title a, .feed.widget.list .meta-item-author,
.feed.widget.list .meta-item-date, .feed.widget.one .meta-item, .feed.widget.complex .item-title a,
.feed.widget.three .meta-item, .feed.widget.blogging .item-title a, .feed.widget.blogging .meta-item,
.feed.widget.right .meta-item, .feed.widget.left .meta-item,
.feed.widget.left .item .item-title a, .feed.widget.right .item .item-title a,
#footer .widget[id*="List"] li a, #footer .widget.social_icons li a,
a.post-meta, .shortcode-tab ul.tab-header li.ui-state-active a, .shortcode-vtab ul.tab-header li.ui-state-active a,
.shortcode-accordion .ui-state-active .accordion-title, .post-page-button.active, a.comments-title,
a.comment-date, .blogger-alt-comments .comment-header .datetime.secondary-text a,
.comment-footer a span, .blogger-alt-comments .comment-actions.secondary-text a {
color: $(site.text.color);
}
[data-mode="dark"] {color: $(darksite.text.color);background-color: $(darkbody.background.color)}
[data-mode="dark"] select, [data-mode="dark"] input, [data-mode="dark"] textarea {color: $(darksite.text.color); background-color: #111}
[data-mode="dark"] .header-button .inner span, [data-mode="dark"] .header-social-icons ul li a, [data-mode="dark"] .header-social-icons ul li a:link,
[data-mode="dark"] input, [data-mode="dark"] .tab-link.active .tab-link-inner,
[data-mode="dark"] .feed.widget.ticker .item-title a, [data-mode="dark"] .feed.widget.list .item-title a, [data-mode="dark"] .feed.widget.list .meta-item-author,
[data-mode="dark"] .feed.widget.list .meta-item-date, [data-mode="dark"] .feed.widget.one .meta-item, [data-mode="dark"] .feed.widget.complex .item-title a,
[data-mode="dark"] .feed.widget.three .meta-item, [data-mode="dark"] .feed.widget.blogging .item-title a, [data-mode="dark"] .feed.widget.blogging .meta-item,
[data-mode="dark"] .feed.widget.right .meta-item, [data-mode="dark"] .feed.widget.left .meta-item,
[data-mode="dark"] .feed.widget.left .item .item-title a, [data-mode="dark"] .feed.widget.right .item .item-title a,
[data-mode="dark"] #footer .widget[id*="List"] li a, [data-mode="dark"] #footer .widget.social_icons li a,
[data-mode="dark"] a.post-meta, [data-mode="dark"] .shortcode-tab ul.tab-header li.ui-state-active a,
[data-mode="dark"] .shortcode-vtab ul.tab-header li.ui-state-active a,
[data-mode="dark"] .shortcode-accordion .ui-state-active .accordion-title, [data-mode="dark"] .post-page-button.active,
[data-mode="dark"] a.comments-title, [data-mode="dark"] a.comment-date, [data-mode="dark"] .blogger-alt-comments .comment-header .datetime.secondary-text a,
[data-mode="dark"] .comment-footer a span, [data-mode="dark"] .blogger-alt-comments .comment-actions.secondary-text a {
color: $(darksite.text.color);
}
[data-mode="dark"] a:hover {color: $(darklink.hover.color);}
.color {color: $(keycolor);}
[data-mode="dark"] .color {color: $(darkkeycolor);}
.border {border-color: $(keycolor);}
[data-mode="dark"] .border {border-color: $(darkkeycolor);}
.bg {background-color: $(keycolor);}
[data-mode="dark"] .bg {background-color: $(darkkeycolor);}
.header-bg, #header.sticky {background-color:$(header.background.color);}
[data-mode="dark"] .header-bg, [data-mode="dark"] #header.sticky {background-color:$(darkheader.background.color);}
#sidebar .widget, .feed.widget.ticker .widget-content, .feed.widget .item, .feed.widget.blogging .widget-content,
#blog-pager a, .post-body-inner table, a.feed-widget-pagination-button, .post-page-button,
.shortcode-tab, .shortcode-vtab, .shortcode-accordion, a.archive-page-pagination-button,
a.scroll-up, .post-share-buttons-url, .footer-inner, .locked-content, .post-related-inner,
.comment-form-message, .shortcode-message .message-content, .wrapper.white-post-inner .post-body-inner
{
background: $(wid.bg.color)
}
[data-mode="dark"] #sidebar .widget, [data-mode="dark"] .feed.widget.ticker .widget-content, [data-mode="dark"] .feed.widget .item,
[data-mode="dark"] .feed.widget.blogging .widget-content, [data-mode="dark"] #blog-pager a,
[data-mode="dark"] .post-body-inner table, [data-mode="dark"] a.feed-widget-pagination-button, [data-mode="dark"] .post-page-button,
[data-mode="dark"] .shortcode-tab, [data-mode="dark"] .shortcode-vtab, [data-mode="dark"] .shortcode-accordion, [data-mode="dark"] a.archive-page-pagination-button,
[data-mode="dark"] a.scroll-up, [data-mode="dark"] .post-share-buttons-url, [data-mode="dark"] .footer-inner, [data-mode="dark"] .locked-content, [data-mode="dark"] .post-related-inner,
[data-mode="dark"] .comment-form-message, [data-mode="dark"] .shortcode-message .message-content, [data-mode="dark"] .wrapper.white-post-inner .post-body-inner
{
background: $(darkwid.bg.color)
}
.wrapper {background-color:$(content.background.color);max-width: 100%;margin: auto;opacity: 0}
[data-mode="dark"] .wrapper {background-color:$(darkcontent.background.color)}
a.comments-title.active {background-color: $(content.background.color)}
[data-mode="dark"] a.comments-title.active {background-color: $(darkcontent.background.color)}
.wrapper.preview {opacity: 1}
.post-body {font: $(post.body.font);}
.main-menu {border-top: 1px solid $(keycolor);}
[data-mode="dark"] .main-menu {border-top: 1px solid $(darkkeycolor);}
.main-menu ul.sub-menu li:hover > a {border-left: 2px solid $(keycolor);}
[data-mode="dark"] .main-menu ul.sub-menu li:hover > a {border-left-color: $(darkkeycolor);}
.main-menu .menu-item-mega > .menu-item-inner > .sub-menu > li li:hover a {border-left: 1px solid $(keycolor);}
[data-mode="dark"] .main-menu .menu-item-mega > .menu-item-inner > .sub-menu > li li:hover a {border-left: 1px solid $(darkkeycolor);}
.main-menu ul.sub-menu li:hover > a,
.main-menu .menu-item-mega > .menu-item-inner > .sub-menu,
.main-menu .menu-item-mega > .menu-item-inner > .sub-menu > li li:hover a {border-color: $(keycolor)!important;}
[data-mode="dark"] .main-menu ul.sub-menu li:hover > a,
[data-mode="dark"] .main-menu .menu-item-mega > .menu-item-inner > .sub-menu,
[data-mode="dark"] .main-menu .menu-item-mega > .menu-item-inner > .sub-menu > li li:hover a {border-color: $(darkkeycolor)!important;}
.header-social-icons ul li a:hover {color: $(keycolor);}
[data-mode="dark"] .header-social-icons ul li a:hover {color: $(darkkeycolor);}
.feed-widget-header .widget-title {font: $(feedwid.title.font);}
.slider-item .item-readmore:hover {background: $(keycolor)}
[data-mode="dark"] .slider-item .item-readmore:hover {background: $(darkkeycolor)}
.owl-dot.active {background: $(keycolor);}
[data-mode="dark"] .owl-dot.active {background: $(darkkeycolor);}
#main-sidebar .widget > h2, #main-sidebar .feed-widget-header, #main-sidebar .feed-widget-header h2 {font: $(sidewid.title.font);}
#main-sidebar .widget.FollowByEmail .follow-by-email-submit {background: $(keycolor);}
[data-mode="dark"] #main-sidebar .widget.FollowByEmail .follow-by-email-submit {background: $(darkkeycolor);}
#footer .widget.social_icons li a:hover {color: $(keycolor);}
[data-mode="dark"] #footer .widget.social_icons li a:hover {color: $(darkkeycolor);}
#footer .FollowByEmail .follow-by-email-submit {background: $(keycolor);}
[data-mode="dark"] #footer .FollowByEmail .follow-by-email-submit {background: $(darkkeycolor);}
h1.post-title {font: $(post.title.font);}
.feed.widget .feed-widget-header {border-color: $(keycolor);}
[data-mode="dark"] .feed.widget .feed-widget-header {border-color: $(darkkeycolor);}
.feed.widget.box-title h2.widget-title {background: $(keycolor);}
[data-mode="dark"] .feed.widget.box-title h2.widget-title {background: $(darkkeycolor);}
.social_counter {color: $(keycolor)}
[data-mode="dark"] .social_counter {color: $(darkkeycolor)}
.social_counter .button {background: $(keycolor)}
[data-mode="dark"] .social_counter .button {background: $(darkkeycolor)}
.main-menu {background: $(menubackground);}
[data-mode="dark"] .main-menu {background: $(darkmenubackground);}
.main-menu ul.menu > li > a {color: $(menucolor);font: $(menufont);}
[data-mode="dark"] .main-menu ul.menu > li > a {color: $(darkmenucolor)}
.main-menu ul.menu > li:hover > a {color: $(menucolorhover);background: $(menubackgroundhover);}
[data-mode="dark"] .main-menu ul.menu > li:hover > a {color: $(darkmenucolorhover);background: $(darkmenubackgroundhover);}
.main-menu ul.sub-menu,
.main-menu .menu-item-mega-label .menu-item-inner { background: $(menusubbackground); }
[data-mode="dark"] .main-menu ul.sub-menu,
[data-mode="dark"] .main-menu .menu-item-mega-label .menu-item-inner { background: $(darkmenusubbackground); }
.main-menu ul.sub-menu a { color: $(menusubcolor); }
[data-mode="dark"] .main-menu ul.sub-menu a { color: $(darkmenusubcolor); }
.main-menu ul.sub-menu li:hover > a { color: $(menusubcolorhover); }
[data-mode="dark"] .main-menu ul.sub-menu li:hover > a { color: $(darkmenusubcolorhover); }
.main-menu ul.menu > li.menu-item-current > a {background: $(menucurbackground); color: $(menucurcolor)!important;}
[data-mode="dark"] .main-menu ul.menu > li.menu-item-current > a {background: $(darkmenucurbackground); color: $(darkmenucurcolor)!important;}
.feed.widget .thumbnail { background: $(blockitembghv) }
.mobile-menu .menu { border-top: 1px solid $(keycolor); }
[data-mode="dark"] .mobile-menu .menu { border-top: 1px solid $(darkkeycolor); }
.slider-item .item-title {font:$(slider.title.font)}
input, select, textarea, checkbox, radio {background: none}
form a[class*="button"],
form button[class*="button"],
form input[class*="button"],
form input[type="submit"]{background:$(keycolor)!important}
[data-mode="dark"] form a[class*="button"],
[data-mode="dark"] form button[class*="button"],
[data-mode="dark"] form input[class*="button"],
[data-mode="dark"] form input[type="submit"]{background:$(darkkeycolor)!important}
/*MAIN LAYOUT*/
.main-loader {
position: fixed;
width: 100%;
height: 100%;
}
.main-loader .inner {
position: absolute;
width: 100%;
height: 1px;
text-align: center;
top: 35%;
}
.wrapper {
padding: 20px 20px 30px 20px;
max-width: 100%;
width: /*-var-wrapper-width-start*/1100px/*-var-wrapper-width-end*/;
box-sizing: border-box;
}
#content {
float: left;
/*-var-content-width-start-*/width: 68.68%;/*-var-content-width-end-*/
}
#main-sidebar {
float: right;
/*-var-sidebar-width-start-*/width: 28.31%;/*-var-sidebar-width-end-*/
}
/* - sticky sidebar */
#sidebar {
padding-top: 0.1px; /* to prevent margin of widget collapse sidebar height */
}
#sidebar.fix-top {
position: fixed;
top: 0!important;
bottom: auto!important;
}
#sidebar.fix-bot {
position: fixed;
top: auto!important;
bottom: 0!important;
}
#sidebar.abs-stay {
position: absolute;
bottom: auto!important;
left: auto!important;
right: 0!important;
}
#sidebar.abs-bot {
position: absolute;
top: auto!important;
bottom: 0!important;
left: auto!important;
right: 0!important;
}
/*amp*/
amp-img, amp-youtube, amp-iframe, noscript.amp {
display: none!important;
}
i[class*="gi "] {
font-family: 'GoogleIcon'!important;
}
{/* .gib {font-family: "Google Icon 5 Brands"!important;} */}
]]></b:skin>
<link id='animate-css' rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<b:if cond='data:blog.languageDirection != "rtl"'>
<link id='main-css' rel="preload" href="https://tiennguyenvan.github.io/cdn/magone/6.9.9632/main.scss.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<!-- <link id='main-css' rel="preload" href="https://sneeit/blogger-theme-magone/build/main.scss.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/> -->
<!--[if IE]>
<style type="text/css">
.ie-sharing-buttons {display: block}
pre.code-box br {
display: inline!important;
}
.inb,
a.button,
.shortcode-accordion .accordion-title-text,
.shortcode-accordion .accordion-title-icon-inactive,
.shortcode-accordion .ui-state-active .accordion-title-icon-active {
*display: inline;
zoom: 1;
}
</style>
<![endif]-->
<!--[if lt IE 8]>
<style type="text/css">
.owl-dot {text-align: center; width: 100%}
.main-menu .menu .arrow,
.owl-dot,
.feed.widget.sticky .item-labels,
.feed.widget.three .item-labels,
.feed.widget.complex .item-0 .item-labels,
.carousel .item-labels,
.feed.widget.left .item-0 .item-labels,
.feed.widget.right .item-0 .item-labels,
.feed.widget.one .item-labels,
.feed.widget.two .item-labels,
.post-breadcrumb > *,
a.post-meta,
a.post-label .label-name,
.post-label span.label-count,
.post-label span.label-count-value {*display: inline;zoom: 1;}
.main-menu ul.sub-menu {width: 180px;}
.main-menu .sub-menu .arrow {display: none;}
.main-menu ul.menu li {list-style:none}
.main-menu .menu-item-mega .menu-item-inner .sub-menu li {width: 24%;}
.main-menu .menu-item-mega .menu-item-inner .sub-menu .sub-menu li {width: 100%;}
li.menu-item-mega-label .sub-menu {top: 0}
.main-menu li.menu-item-mega-label.finished .menu-item-inner .menu-mega-content .item {max-width: 22%}
.menu-mega-content .item .item-thumbnail img {min-width: 100%;min-height: 100%;margin: 0!important;}
.feed.widget.complex .item {max-width: 47.9%;}
.footer-col {margin: 0 0 0 3.9%;padding: 0 0 0 3.9%;}
#footer-menu li {max-width: 49.9%}
.widget.social_icons {display: none!important}
#footer .FollowByEmail .follow-by-email-address,
#main-sidebar .widget.FollowByEmail .follow-by-email-address {padding: 7px!important;width: 100px}
#footer .FollowByEmail {height: 90px}
</style>
<![endif]-->
<!--[if lt IE 9]>
<style type="text/css">
.main-menu ul.menu li a i.gi {margin-right:3px;}
.post-body-inner img {diplay:block;min-width: 300px;width:100%}
</style>
<![endif]-->
<b:else/>
<link id='main-css-rtl' rel="preload" href="https://tiennguyenvan.github.io/cdn/magone/6.9.9632/magone-rtl.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<!--[if IE]
><style type="text/css">
.ie-sharing-buttons {display: block}
pre.code-box br {
display: inline!important;
}
.inb,
a.button,
.shortcode-accordion .accordion-title-text,
.shortcode-accordion .accordion-title-icon-inactive,
.shortcode-accordion .ui-state-active .accordion-title-icon-active {
*display: inline;
zoom: 1;
}
</style>
<![endif]-->
<!--[if lt IE 8]>
<style type="text/css">
.owl-dot {text-align: center; width: 100%}
.main-menu .menu .arrow,
.owl-dot,
.feed.widget.sticky .item-labels,
.feed.widget.three .item-labels,
.feed.widget.complex .item-0 .item-labels,
.carousel .item-labels,
.feed.widget.right .item-0 .item-labels,
.feed.widget.left .item-0 .item-labels,
.feed.widget.one .item-labels,
.feed.widget.two .item-labels,
.post-breadcrumb > *,
a.post-meta,
a.post-label .label-name,
.post-label span.label-count,
.post-label span.label-count-value {*display: inline;zoom: 1;}
.main-menu ul.sub-menu {width: 180px;}
.main-menu .sub-menu .arrow {display: none;}
.main-menu ul.menu li {list-style:none}
.main-menu .menu-item-mega .menu-item-inner .sub-menu li {width: 24%;}
.main-menu .menu-item-mega .menu-item-inner .sub-menu .sub-menu li {width: 100%;}
li.menu-item-mega-label .sub-menu {top: 0}
.main-menu li.menu-item-mega-label.finished .menu-item-inner .menu-mega-content .item {max-width: 22%}
.menu-mega-content .item .item-thumbnail img {min-width: 100%;min-height: 100%;margin: 0!important;}
.feed.widget.complex .item {max-width: 47.9%;}
.footer-col {margin: 0 3.9% 0 0;padding: 0 3.9% 0 0;}
#footer-menu li {max-width: 49.9%}
.widget.social_icons {display: none!important}
#footer .FollowByEmail .follow-by-email-address,
#main-sidebar .widget.FollowByEmail .follow-by-email-address {padding: 7px!important;width: 100px}
#footer .FollowByEmail {height: 90px}
</style>
<![endif]-->
<!--[if lt IE 9]>
<style type="text/css">
.main-menu ul.menu li a i.gi {margin-left:3px;}
.post-body-inner img {diplay:block;min-width: 300px;width:100%}
</style>
<![endif]-->
</b:if>
<b:include data='blog' name='google-analytics'/>
<!--var-custom-header-html-start--><!--var-custom-header-html-end-->
<!-- end of AMP check -->
</b:if>
</head>
<b:if cond='false'><!--disable-weird-symbol-start--></b:if><b:if cond='!false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--disable-weird-symbol-end--></b:if>
<b:if cond='false'><!--amp-enabled-start--></b:if><b:if cond='false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--amp-enabled-end--></b:if>
-->
</head>
</b:if>
</b:if>
<body expr:class='data:blog.pageType'><!--theme-mode-start--><b:attr name='data-mode' value='light'/><!--theme-mode-end-->
<b:if cond='false'><!--amp-enabled-start--></b:if><b:if cond='false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--amp-enabled-end--></b:if>
<!--amp-ad-client-start--><b:with value='""' var='amp_ad_client'><!--amp-ad-client-end-->
<b:if cond='data:amp_ad_client'>
<amp-auto-ads type="adsense" data-ad-client="<data:amp_ad_client/>"></amp-auto-ads>
</b:if>
</b:with>
</b:if>
<b:if cond='false'><!--amp-enabled-start--></b:if><b:if cond='false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--amp-enabled-end--></b:if>
<b:else/>
<!--main-loader-start--><b:with value='""' var='loading_image'><!--main-loader-end-->
<b:if cond='data:loading_image'>
<div class='main-loader'><div class='inner'><img alt='Loading ...' height='95' expr:src='data:loading_image' width='95'/></div></div>
</b:if>
</b:with>
</b:if>
<div class='wrapper <b:if cond='data:blog.url == data:blog.homepageUrl'>home<b:elseif cond='data:blog.pageType in {"static_page","item", "archive", "error_page"}'/><data:blog.pageType/><b:else/>index</b:if><b:if cond='false'><!--white-post-inner-start--></b:if><b:if cond='false'> white-post-inner</b:if><b:if cond='false'><!--white-post-inner-end--></b:if><b:if cond='data:view.isPreview'> preview</b:if>'>
<b:if cond='false'><!--amp-enabled-start--></b:if><b:if cond='false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--amp-enabled-end--></b:if>
<b:else/>
<b:section class='hide' id='admin-header-custom-html-code' maxwidgets='1' expr:name='data:blog.url != data:blog.homepageUrl? "" : "Admin Header Custom Code (HTML / JavaScript / CSS)"' showaddelement='no'>
<b:widget id='HTML100' locked='true' title='Only for Admin' type='HTML'><b:includable id='main'><data:content/></b:includable></b:widget>
</b:section>
</b:if>
<div class='wide'>
<!-- YOUR XML CODE START HERE
################################################### -->
<header id='header'>
<b:if cond='false'><!--amp-enabled-start--></b:if><b:if cond='false and data:blog.pageType in {"static_page","item"} and data:blog.isMobileRequest'><b:if cond='false'><!--amp-enabled-end--></b:if>
<a expr:href='data:blog.homepageUrl' class="amp-logo">
<data:blog.title/>
</a>
<a expr:href='data:blog.url + "?m=0"' class="amp-redirect">
<span data-l10n='VIEW NON-AMP VERSION'>VIEW NON-AMP VERSION</span>
</a>
<b:else/>
<!--top-bar--><b:if cond='false'><!--top-bar-->
<div class='top-bar'><div class='clear'></div></div>
</b:if>
<!--auto-height-logo--><b:if cond='false'><!--auto-height-logo-->
<div class="top-page-wrapper auto-height">
<div class="table">
<div class="tr">
<b:else/>
<div class="top-page-wrapper">
</b:if>
<!--auto-height-logo--><b:if cond='false'><!--auto-height-logo-->
<div id='top-page-logo' class='td'>
</div>
</b:if>
<b:section id='top-page' expr:name='data:blog.url != data:blog.homepageUrl? "" : "Page Top"' maxwidgets='1'></b:section>
<!--auto-height-logo--><b:if cond='false'><!--auto-height-logo-->
</div>
</div>
</div>
<div class='clear'></div>
<b:else/>
</div>
</b:if>
<div class='clear'></div>
<b:section class='header-bg' id='header-section' maxwidgets='3' expr:name='data:blog.url != data:blog.homepageUrl? "" : "Header"' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Header Optmized' type='Header'>
<b:includable id='main'>
<a id='main-menu-toggle' class='main-menu-toggle header-button toggle-button active'><span class='inner'><i class='gis gi-bars color'></i> <span data-l10n='MENU'>MENU</span></span><span class='arrow border'></span></a>
<a id='main-menu-toggle-mobile' class='main-menu-toggle header-button toggle-button mobile'><span class='inner'><i class='gis gi-bars color'></i> <span data-l10n='MENU'>MENU</span></span><span class='arrow border'></span></a>
<b:if cond='data:blog.pageType == "item"'>
<h2 class='blog-title'><b:include name='title'/></h2>
<b:else/>
<b:if cond='data:blog.pageType == "static_page"'>
<h2 class='blog-title'><b:include name='title'/></h2>
<b:else/>
<h1 class='blog-title'><b:include name='title'/></h1>
</b:if>
</b:if>
<!--show_search--><b:if cond='true'><!--show_search--><a class='header-button' id='search-toggle'><span class='inner'><span data-l10n='SEARCH'>SEARCH</span> <i class='gis gi-search color'/></span></a></b:if>
<b:include name='mode-toggle'/>
<!--show_social--><b:if cond='true'><!--show_social--><div class='header-social-icons'></div></b:if>
<!--auto-height-logo--><b:if cond='false'><!--auto-height-logo-->
<style type="text/css">
.header-button {
height: 40px;
line-height: 40px;
}
.header-button .inner {
padding-top: 10px;
padding-bottom: 10px;
}
#Header1 {
height: 40px;
}
.header-social-icons ul li {
height: 35px;
line-height: 35px;
}
.top-bar {
border-bottom: 1px solid #7775;
margin: 0 0 10px 0;
}
</style>
<script type="text/javascript">
//<![CDATA[
var h1_wait_jq = setInterval(function(){
if (typeof($) != 'undefined') {
clearInterval(h1_wait_jq);
h1_wait_jq = null;
/* Modify header here */
if ($('.section#top-page .widget').length) {
$('.section#top-page').addClass('td');
} else {
$('.section#top-page').remove();
$('.top-page-wrapper.auto-height .table, .top-page-wrapper.auto-height .tr, .top-page-wrapper.auto-height .td').css('display', 'block');
$('.Header .blog-title').css({
'width': '100%',
'text-align': 'center'
});
}
$('.Header .blog-title').appendTo($('#top-page-logo'));
}
}, 50);
//]]>
</script>
</b:if>
<!--top-bar--><b:if cond='false'><!--top-bar-->
<style type="text/css">
.top-bar .header-social-icons {
float: left;
}
html[dir="rtl"] .top-bar .header-social-icons {
float: right;
}
.top-bar #search-toggle {
height: 35px;
}
.top-bar #search-toggle .inner {
padding: 0;
line-height: 40px;
}
.top-bar .header-social-icons ul li {
height: 35px;
line-height: 35px;
}
.wrapper {
padding-top: 0;
}
</style>
<!--auto-height-logo--><b:if cond='false'><!--auto-height-logo-->
<style type="text/css">
#Header1 {
display: none;
}
.top-page-wrapper {
padding-bottom: 10px;
}
@media only screen and (max-width: 1009px) {
#Header1 {
display: block;
}
.main-menu-toggle.header-button .inner span {
display: inline;
}
}
</style>
</b:if>
<script type="text/javascript">
//<![CDATA[
var h2_wait_jq = setInterval(function(){
if (typeof($) != 'undefined') {
clearInterval(h2_wait_jq);
h2_wait_jq = null;
/* Modify header here, order is important */
$('.header-mode-toggle').prependTo($('.top-bar'));
$('#search-toggle').prependTo($('.top-bar'));
$('.header-social-icons').prependTo($('.top-bar'));
}
}, 50);
//]]>
</script>
</b:if>
</b:includable>
<b:includable id='title'>
<a expr:href='data:blog.homepageUrl'>
<b:if cond='data:useImage'>
<img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width'/>
<span style='position: fixed;top: -999999px;'><data:title/></span>
<b:else/>
<data:title/>
</b:if>
</a>
</b:includable>
<b:includable id='mode-toggle'>
<!--show_mode_toggle--><b:if cond='true'><!--show_mode_toggle-->
<div class='header-mode-toggle header-button'>
<input type='checkbox' class="header-mode-toggle-checkbox" id="header-mode-toggle-checkbox"/>
<label for="header-mode-toggle-checkbox">
<i class="gis gi-sun"></i>
<div class="ball"></div>
<i class="gis gi-moon"></i>
</label>
</div>
<!-- Theme mode switcher init -->
<script type='text/javascript'>
let mode = localStorage.getItem('theme-mode');
if (!mode) mode = document.body.getAttribute('data-mode')
document.body.setAttribute('data-mode', mode === 'dark' ? 'dark': 'light');
document.getElementById('header-mode-toggle-checkbox').checked = mode === 'dark';
</script>
</b:if>
</b:includable>
</b:widget>
<b:widget id='PageList1' locked='true' title='MAIN MENU' type='PageList'>
<b:includable id='main'>
<!--MAGONE-MAIN-MENU-LOCATION-START-->
<ul class="menu">
<li class="menu-item-type-custom menu-item" data-enable_mega="" data-icon="gi-home">
<a href="https://magonedemo.blogspot.com/">Home</a>
</li>
</ul><!--MAGONE-MAIN-MENU-LOCATION-END-->
</b:includable>
</b:widget>
<b:widget id='LinkList1' locked='true' title='Header$type=social_icons' type='LinkList' visible='true'/>
</b:section>
</b:if> <!-- end of check AMP -->
</header>