-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtemplate.xml
More file actions
1282 lines (1187 loc) · 103 KB
/
template.xml
File metadata and controls
1282 lines (1187 loc) · 103 KB
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:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' b:templateUrl='indie.xml' b:templateVersion='1.3.0' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<!--<head>-->
<head>
<b:comment>
* +++++++++++++++++++++++++
* Name : BS4 SamapiSimple
* Author : Anas RAR
* Author URL : anasrar.blogspot.com
* Date Create : 10th December 2018
* ++++++++++++++++++++++++
</b:comment>
<meta charset='utf-8'/>
<meta content='IE=edge' http-equiv='X-UA-Compatible'/>
<meta content='width=device-width,minimum-scale=1,initial-scale=1' name='viewport'/>
<link expr:href='data:blog.url' rel='canonical'/>
<b:if cond='data:view.isHomepage'>
<title><data:blog.title/></title>
<b:elseif cond='data:view.isPost or data:view.isPage or data:view.search.label'/>
<title><data:blog.pageName/> | <data:blog.title/></title>
<meta expr:content='data:blog.pageName' name='posttitle'/>
<b:elseif cond='data:view.search.query'/>
<title><data:view.search.resultsMessage/> | <data:blog.title/></title>
<b:elseif cond='data:view.search and !data:view.search.label and !data:view.search.query'/>
<title><data:blog.title/></title>
<b:elseif cond='data:view.isArchive'/>
<title><data:view.archive.rangeMessage/> | <data:blog.title/></title>
<b:elseif cond='data:view.isError'/>
<title>Page Not Found | <data:blog.title/></title>
</b:if>
<b:skin version='1.3.0'><![CDATA[
/*
<!-- Constants -->
<Group description="Comments" selector=".comments-container">
<Variable name="comment.container" description="comment.container" type="color" default="#fff" value="#ffffff"/>
<Variable name="comment.chat.background" description="comment.chat.background" type="color" default="#efefef" value="#efefef"/>
<Variable name="comment.link.color" description="comment.link.color" type="color" default="#f16c90" value="#f16c90"/>
<Variable name="comment.time.color" description="comment.time.color" type="color" default="#bbbbbb" value="#bbbbbb"/>
<Variable name="comment.button.color" description="comment.button.color" type="color" default="#e84974" value="#e84974"/>
<Variable name="comment.button.color.hover" description="comment.button.color.hover" type="color" default="#f16c90" value="#f16c90"/><Variable name="comment.message.color" description="comment.message.color" type="color" default="#fff" value="#ffffff"/><Variable name="comment.message.background" description="comment.message.background" type="color" default="#f16c90" value="#f16c90"/></Group> <Group description="New Comment Required - Dont edit"><Variable name="body.background" description="Body Background" type="background" color="#000" default="#000 none repeat scroll top left" value="#000 none repeat scroll top left"/><Variable name="body.font" description="Font" type="font" default="normal normal 14px 'roboto', sans-serif" value="normal normal 14px 'roboto', sans-serif"/> <Variable name="body.text.color" description="Text Color" type="color" default="#222" value="#222222"/><Variable name="body.text.font" description="2" type="font" default="$(body.font)" value="normal normal 14px 'roboto', sans-serif"/><Variable name="posts.background.color" description="6" type="color" default="#fff" value="#ffffff"/><Variable name="body.link.color" description="7" type="color" default="#2196f3" value="#2196f3"/><Variable name="body.link.visited.color" description="8" type="color" default="$(body.link.color)" value="#2196f3"/><Variable name="body.link.hover.color" description="9" type="color" default="$(body.link.color)" value="#2196f3"/><Variable name="blog.title.font" description="10" type="font" default="$(robotoBold45)" value="$(robotoBold45)"/><Variable name="blog.title.color" description="11" type="color" default="#fff" value="#ffffff"/><Variable name="header.icons.color" description="12" type="color" default="#fff" value="#ffffff"/><Variable name="tabs.font" description="13" type="font" family="$(body.font.family)" size="$(body.font.size)" default="700 normal $(size) $(family)" value="700 normal $(size) $(family)"/><Variable name="tabs.color" description="14" type="color" default="#ccc" value="#cccccc"/><Variable name="tabs.selected.color" description="15" type="color" default="#fff" value="#ffffff"/><Variable name="tabs.overflow.background.color" description="16" type="color" default="$(posts.background.color)" value="#ffffff"/><Variable name="tabs.overflow.color" description="17" type="color" default="$(posts.text.color)" value="#222222"/><Variable name="tabs.overflow.selected.color" description="18" type="color" default="$(posts.title.color)" value="#212121"/><Variable name="posts.title.color" description="19" type="color" default="#212121" value="#212121"/><Variable name="posts.title.font" description="20" type="font" default="$(robotoBold22)" value="$(robotoBold22)"/><Variable name="posts.text.font" description="21" type="font" default="$(body.text.font)" value="normal normal 14px 'roboto', sans-serif"/><Variable name="posts.text.color" description="22" type="color" default="$(body.text.color)" value="#222222"/><Variable name="posts.icons.color" description="23" type="color" default="#707070" value="#707070"/><Variable name="labels.background.color" description="24" type="color" default="$(sidebar.backgroundColorTopHD)" value="$(sidebar.backgroundColorTopHD)"/></Group>
*/
]]></b:skin>
<b:template-skin>
<![CDATA[
body#layout:before{content:"BS4 SampaiSimple";position:absolute;top:33px;right:7px;z-index:1;padding:10px 20px;font-size:18px;font-family:sans-serif;color:#fff;background: #007bff}
body#layout {background-color: #fff; border: 0}
body#layout div.section {background-color: #fff}
body#layout .add_widget a {color: #007bff}
body#layout .row:after {content:'';clear:both;display:block}
body#layout #maincontent, body#layout #col-ads {float:left;width:55.96%;}
body#layout #navcontent, body#layout #col-head {float:left;width:44%;}
body#layout #content-bottom #bottom-widget-left, body#layout #content-bottom #bottom-widget-middle, body#layout #content-bottom #bottom-widget-right {float:left;width:28.06%;}
]]>
</b:template-skin>
<b:if cond='not data:view.isError'>
<link expr:href='data:blog.blogspotFaviconUrl' rel='icon' type='image/x-icon'/>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default?alt=rss"' expr:title='data:blog.title + " - RSS"' rel='alternate' type='application/rss+xml'/>
<link expr:href='"http://www.blogger.com/feeds/" + data:blog.blogId + "/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<data:blog.openIdOpTag/>
<b:if cond='data:blog.adultContent'>
<meta content='adult' name='rating'/>
</b:if>
<link expr:href='data:blog.homepageUrl' expr:hreflang='data:blog.locale' rel='alternate'/>
<b:comment>DESC AND KEYWORD</b:comment>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<meta expr:content='data:blog.metaDescription' name='keywords'/>
<b:else/>
<meta expr:content='data:blog.title' name='description'/>
<meta expr:content='data:blog.title' name='keywords'/>
</b:if>
<!--[if IE]><script type="text/javascript" src="https://www.blogger.com/static/v1/jsbin/579771828-ieretrofit.js"></script><![endif]-->
<!--[if IE]><script>/*<![CDATA[*/(function(){var a=("abbr,article,aside,audio,canvas,datalist,details,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video").split(",");for(var b=0;b<a.length;b++){document.createElement(a[b])}try{document.execCommand("BackgroundImageCache",false,true)}catch(c){}})();/*]]>*/</script><![endif]-->
<b:comment>GOOGLE PLUS</b:comment>
<b:if cond='data:blog.googleProfileUrl'>
<link expr:href='data:blog.googleProfileUrl' rel='publisher'/>
<link expr:href='data:blog.googleProfileUrl' rel='author'/>
<data:blog.meTag/>
<b:else/>
<link href='https://plus.google.com/xxxxxxxxxxxx_gp_id_xxxxxxxxxxxxx/posts' rel='publisher'/>
<link href='https://plus.google.com/xxxxxxxxxxxx_gp_id_xxxxxxxxxxxxx/about' rel='author'/>
<link href='https://plus.google.com/xxxxxxxxxxxx_gp_id_xxxxxxxxxxxxx' rel='me'/>
</b:if>
<b:comment>FACEBOOK</b:comment>
<meta content='xxxxxxxxxxxx_ff_url_xxxxxxxxxxxxx' property='fb:admins'/>
<meta content='xxxxxxxxxxxx_ff_url_xxxxxxxxxxxxx' property='fb:pages'/>
<meta content='xxxxxxxxxxxx_f_app_id_xxxxxxxxxxxxx' property='fb:app_id'/>
<meta content='xxxxxxxxxxxx_ff_url_xxxxxxxxxxxxx' property='article:author'/>
<b:comment>WEBMASTER</b:comment>
<meta content='xxxxxxxxxxxx_g_v_xxxxxxxxxxxxx' name='google-site-verification'/>
<meta content='xxxxxxxxxxxx_b_v_xxxxxxxxxxxxx' name='msvalidate.01'/>
<meta content='xxxxxxxxxxxx_a_v_xxxxxxxxxxxxx' name='alexaVerifyID'/>
<b:comment>OPEN GRAPH</b:comment>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta expr:content='data:view.url.canonical' property='og:url'/>
<meta content='en_US' property='og:locale'/>
<meta content='en_GB' property='og:locale:alternate'/>
<meta content='id_ID' property='og:locale:alternate'/>
<b:if cond='data:view.isMultipleItems'>
<meta content='website' property='og:type'/>
<meta expr:content='data:blog.title' property='og:title'/>
<meta content='URL THUMB' property='og:image'/>
<meta content='400' property='og:image:width'/>
<meta content='300' property='og:image:height'/>
<meta expr:content='data:blog.title' property='og:image:alt'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<b:else/>
<meta expr:content='data:blog.pageName + "."' property='og:description'/>
</b:if>
<b:elseif cond='data:view.isSingleItem'/>
<meta content='article' property='og:type'/>
<meta expr:content='data:blog.pageName + " | " + data:blog.title' property='og:title'/>
<b:if cond='data:view.featuredImage'>
<meta expr:content='resizeImage(data:view.featuredImage, 1200, "1200:630")' property='og:image'/>
<meta content='400' property='og:image:width'/>
<meta content='300' property='og:image:height'/>
<meta expr:content='data:blog.pageName + " | " + data:blog.title' property='og:image:alt'/>
<b:else/>
<meta content='URL THUMB' property='og:image'/>
<meta content='400' property='og:image:width'/>
<meta content='300' property='og:image:height'/>
<meta expr:content='data:blog.pageName + " | " + data:blog.title' property='og:image:alt'/>
</b:if>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<b:else/>
<meta expr:content='data:blog.pageName + "."' property='og:description'/>
</b:if>
</b:if>
<b:comment>TWITTER</b:comment>
<b:if cond='data:view.isHomepage'>
<meta content='summary_large_image' name='twitter:card'/>
<b:else/>
<meta content='summary' name='twitter:card'/>
</b:if>
<meta content='xxxxxxxxxxxx_twitter_username_xxxxxxxxxxxxx' name='twitter:site'/>
<meta content='xxxxxxxxxxxx_twitter_username_xxxxxxxxxxxxx' name='twitter:creator'/>
<meta expr:content='data:view.url.canonical' name='twitter:url'/>
<b:if cond='data:view.isMultipleItems'>
<meta expr:content='data:blog.title' name='twitter:title'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
<b:else/>
<meta expr:content='data:blog.title' name='twitter:description'/>
</b:if>
<meta content='URL THUMB' property='twitter:image'/>
<b:elseif cond='data:view.isSingleItem'/>
<meta expr:content='data:blog.pageName + " | " + data:blog.title' name='twitter:title'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
<b:else/>
<meta expr:content='data:blog.pageName + "."' name='twitter:description'/>
</b:if>
<b:if cond='data:view.featuredImage'>
<meta expr:content='resizeImage(data:view.featuredImage, 1200, "1200:630")' property='twitter:image'/>
<b:else/>
<meta content='URL THUMB' property='twitter:image'/>
</b:if>
</b:if>
<b:comment>ROBOTS</b:comment>
<b:if cond='data:view.isHomepage'>
<meta content='index,follow' name='robots'/>
</b:if>
<b:if cond='data:view.isArchive'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:if cond='data:view.search.label'>
<meta content='noindex' name='robots'/>
</b:if>
</b:if>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "<data:blog.homepageUrl/>",
"name": "<data:blog.title/>",
"description": "<data:view.description.escaped/>",
"potentialAction": {
"@type": "SearchAction",
"target": "<data:blog.homepageUrl/>search?q={search_term_string}",
"query-input": "required name=search_term_string" }
}
</script>
<link href='//stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css' rel='stylesheet'/>
<link href='//fonts.googleapis.com/css?family=Oxygen+Mono|Google+Sans:300,400,700' rel='stylesheet'/>
<link href='//use.fontawesome.com/releases/v5.5.0/css/all.css' rel='stylesheet'/>
<script src='//code.jquery.com/jquery-2.2.4.min.js' type='text/javascript'/>
<style>
body,html{height:100%}body{background-color:#e8e8e8;font-family:'Google Sans',sans-serif}#fullpage{position:relative;background-color:#fff;min-height:100%}#navlink>div>ul{list-style:none;margin:0;padding:0}#navlink>div>ul>li{display:inline-block;margin:0;padding:0}#navlink>div>ul>li:not(:last-child){margin-right:.75rem}.card-post-list{margin-bottom:1rem}.card-post-list>._thumbnail{position:relative;background-color:#dee2e6;background-position:center;background-repeat:no-repeat;background-size:cover;padding:1rem;height:170px}.card-post-list>._body{padding:1rem;border:1px solid #dee2e6;border-width:0 1px 1px}.card-post-list>._body>h5{height:48px;overflow:hidden}.card-post-list>._body>._post{height:57px;overflow:hidden}@media (min-width:768px){#fullpage{max-width:1000px;margin:0 auto;border-left:1px solid rgba(0,0,0,.23);border-right:1px solid rgba(0,0,0,.23);box-shadow:0 0 10px 0 rgba(0,0,0,.24)}#navcontent{position:relative}#navcontent::after{content:'';position:absolute;top:-1rem;bottom:-1rem;left:calc(0px - .5px);width:1px;background-color:#dee2e6}#navlink{top:0!important}}@media (max-width:767px){#content-bottom .col-md-4.coba:not(:last-child){padding-bottom:.5rem}#navlink:not(.d-none){position:absolute;top:50px;left:0;right:0;padding:1rem 15px;background-color:#fff;border-bottom:1px solid #dee2e6;z-index:1;white-space:nowrap;overflow:auto}#navlink:not(.d-none)>div>ul>li:last-child{margin-right:15px}}#headline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;background-color:#fff}#headline>div,#headline>span{display:block;margin:0;padding:10px}#headline>span{background-color:#007bff;color:#fff;min-width: 73px;}#headline>div{background-color:#fff;color:#000;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#to-top{position:fixed;right:1rem;bottom:-10rem;transition:bottom .1s linear}#to-top.muncul{bottom:1rem}#post-content img{max-width:100%}#post-content .separator>a,a[imageanchor="1"]{margin:0!important}#sharebox>a{font-size:25px;color:#fff;padding:5px}#sharebox>a.facebook-share-btn{background:#5d82d1}#sharebox>a.twitter-share-btn{background:#40bff5}#sharebox>a.google-share-btn{background:#eb5e4c}#sharebox>a.whatsapp-share-btn{background:#43d854}#comment-editor{min-height:95px;transition:height .2s ease-in-out;-ms-overflow-style:none;overflow:-moz-scrollbars-none;overflow:hidden;background:url(data:image/gif;base64,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) center center no-repeat;background-size:30px 30px}#comment-editor::-webkit-scrollbar{width:0!important}#comments ol#top-ra.reverse,#comments ol#top-ra.reverse>li{margin:0 0 0 50px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}#comments .comment-replies ol,#comments ol#top-ra{position:relative;list-style:none;margin:0;padding:0}#comments .comment-replies ol li.comment,#comments ol#top-ra>li.comment{position:relative;margin:0 0 0 50px}#comments ol#top-ra>li.comment>.comment-block{margin-bottom:5px}#comments .comment-replies ol li.comment>.avatar-image-container,#comments ol#top-ra>li.comment>.avatar-image-container{position:absolute;top:0;left:-50px;width:35px;height:35px;border-radius:50%;overflow:hidden}#comments .comment-replies ol li.comment>.avatar-image-container>img,#comments ol#top-ra>li.comment>.avatar-image-container>img{width:100%;height:100%}#comments .comment-replies ol li.comment>.comment-block>.comment-header>cite.user,#comments ol#top-ra>li.comment>.comment-block>.comment-header>cite.user{font-style:normal}#comments .comment-replies ol li.comment>.comment-block>.comment-header>.datetime>a,#comments ol#top-ra>li.comment>.comment-block>.comment-header>.datetime>a{font-size:70%;color:rgba(17,17,17,.6);margin:0 0 0 3px}#comments .comment-replies ol li.comment,#comments ol#top-ra>li.comment,#top-ce,.comment-thread>.thread-toggle{margin-bottom:10px}.comment-thread>.thread-toggle{display:block}#comments .comment-replies ol li.comment>.comment-block>.comment-content,#comments ol#top-ra>li.comment>.comment-block>.comment-content{margin:2px 0}#comments ol#top-ra>li.comment>.comment-block>.comment-actions>a{color:rgba(17,17,17,.6);text-transform:uppercase;font-weight:700}#comments .comments-content .icon.user{width:20px;height:20px;margin-left:5px;vertical-align:-3px;display:inline-block;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath fill='%23007bff' d='M 14.984375 -0.013671875 A 1.0001 1.0001 0 0 0 14 1 L 14 4 A 1.0001 1.0001 0 1 0 16 4 L 16 1 A 1.0001 1.0001 0 0 0 14.984375 -0.013671875 z M 10.984375 1.9863281 A 1.0001 1.0001 0 0 0 10 3 L 10 4 A 1.0001 1.0001 0 1 0 12 4 L 12 3 A 1.0001 1.0001 0 0 0 10.984375 1.9863281 z M 18.984375 1.9863281 A 1.0001 1.0001 0 0 0 18 3 L 18 4 A 1.0001 1.0001 0 1 0 20 4 L 20 3 A 1.0001 1.0001 0 0 0 18.984375 1.9863281 z M 6 7 L 6 24 C 6 25.105 6.895 26 8 26 L 22 26 C 23.105 26 24 25.105 24 24 L 24 22 L 25 22 C 27.197334 22 29 20.197334 29 18 L 29 15 C 29 12.802666 27.197334 11 25 11 L 24 11 L 24 7 L 6 7 z M 24 13 L 25 13 C 26.116666 13 27 13.883334 27 15 L 27 18 C 27 19.116666 26.116666 20 25 20 L 24 20 L 24 13 z'%3E%3C/path%3E%3C/svg%3E") center center no-repeat}#comments .comments-content .icon.user.blog-author{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath fill='%23007bff' d='M 15 3 C 10.398 3 5.6113281 4.0371094 5.6113281 4.0371094 L 5.6074219 4.0410156 A 2 2 0 0 0 4 6 L 4 12 C 4 22.398 14.021484 26.744141 14.021484 26.744141 A 2 2 0 0 0 15 27 A 2 2 0 0 0 15.974609 26.744141 L 15.978516 26.744141 C 15.979516 26.744141 26 22.398 26 12 L 26 6 A 2 2 0 0 0 24.388672 4.0371094 C 24.388672 4.0371094 19.602 3 15 3 z M 15 8.234375 C 15.20125 8.234375 15.402969 8.348625 15.480469 8.578125 L 16.638672 12.005859 L 20.255859 12.048828 C 20.740859 12.053828 20.941734 12.670937 20.552734 12.960938 L 17.650391 15.121094 L 18.728516 18.574219 C 18.873516 19.037219 18.347172 19.419672 17.951172 19.138672 L 15 17.046875 L 12.048828 19.138672 C 11.652828 19.419672 11.127484 19.037219 11.271484 18.574219 L 12.349609 15.121094 L 9.4472656 12.960938 C 9.0582656 12.671938 9.2591406 12.054828 9.7441406 12.048828 L 13.361328 12.005859 L 14.519531 8.578125 C 14.597031 8.348625 14.79875 8.234375 15 8.234375 z'%3E%3C/path%3E%3C/svg%3E") center center no-repeat}
</style>
<script type='text/javascript'>
//<![CDATA[
var _0xb79e=['\x77\x6f\x6f\x53\x77\x71\x50\x44\x74\x77\x7a\x44\x67\x4d\x4b\x4f\x77\x37\x34\x52\x77\x6f\x46\x59','\x63\x6a\x2f\x43\x6b\x58\x72\x43\x68\x73\x4b\x50\x77\x37\x34\x63\x77\x36\x4d\x46\x49\x77\x3d\x3d','\x4e\x63\x4b\x47\x77\x37\x59\x71','\x63\x38\x4b\x2f\x4f\x57\x62\x44\x72\x51\x3d\x3d','\x54\x73\x4f\x53\x55\x46\x38\x35\x77\x6f\x78\x51\x59\x4d\x4b\x38\x47\x54\x4d\x36\x77\x70\x72\x43\x6c\x4d\x4f\x34','\x49\x41\x7a\x44\x74\x33\x48\x43\x73\x4d\x4f\x78\x53\x63\x4b\x44\x77\x70\x31\x4a\x57\x38\x4f\x65','\x77\x37\x76\x44\x6a\x4d\x4f\x69\x77\x70\x73\x46\x66\x68\x6b\x4c\x42\x38\x4f\x6b','\x77\x71\x76\x43\x6c\x4d\x4b\x6d\x46\x73\x4f\x2b','\x77\x71\x51\x33\x4f\x63\x4f\x58\x4c\x4d\x4f\x4d\x59\x41\x3d\x3d','\x52\x38\x4f\x77\x77\x34\x78\x7a\x77\x6f\x4c\x44\x70\x6a\x74\x4f\x42\x56\x62\x43\x6f\x6b\x33\x44\x6d\x63\x4b\x55','\x77\x36\x38\x33\x4f\x38\x4b\x57\x64\x4d\x4b\x44\x63\x6e\x66\x44\x75\x38\x4f\x78','\x77\x6f\x6e\x43\x6e\x6c\x44\x43\x75\x38\x4b\x39\x77\x71\x6e\x44\x74\x67\x3d\x3d','\x50\x77\x7a\x43\x6a\x48\x48\x43\x6d\x41\x3d\x3d','\x77\x34\x76\x43\x6e\x56\x7a\x43\x75\x4d\x4b\x70\x77\x37\x44\x44\x70\x79\x72\x43\x6a\x38\x4b\x55\x77\x6f\x64\x66','\x42\x6c\x6a\x43\x6e\x63\x4f\x6b\x63\x43\x74\x6f\x77\x6f\x52\x38\x57\x33\x33\x44\x70\x32\x76\x44\x68\x67\x3d\x3d','\x57\x73\x4b\x50\x58\x73\x4f\x34','\x5a\x38\x4b\x43\x77\x34\x4e\x32','\x77\x71\x46\x63\x54\x41\x38\x45\x77\x70\x7a\x44\x73\x73\x4b\x55','\x77\x70\x38\x6d\x54\x48\x34\x49\x77\x35\x58\x44\x6a\x77\x3d\x3d','\x77\x35\x76\x44\x73\x73\x4b\x36\x77\x36\x63\x3d','\x41\x73\x4f\x56\x55\x6b\x63\x3d','\x77\x70\x72\x43\x6c\x56\x54\x43\x75\x63\x4b\x71\x77\x72\x6a\x44\x6b\x43\x6e\x43\x69\x63\x4b\x41\x77\x70\x67\x3d','\x63\x54\x7a\x43\x76\x7a\x73\x3d','\x4c\x67\x58\x43\x69\x48\x33\x43\x68\x63\x4b\x48\x77\x35\x38\x65\x77\x36\x4d\x66\x50\x41\x3d\x3d','\x65\x38\x4f\x6a\x77\x34\x31\x5a\x77\x71\x52\x37\x77\x35\x72\x44\x6f\x67\x3d\x3d','\x77\x6f\x4d\x47\x77\x37\x72\x44\x73\x42\x2f\x44\x75\x73\x4b\x59','\x66\x77\x37\x43\x68\x47\x54\x43\x6e\x38\x4b\x4c\x77\x37\x49\x5a','\x4e\x73\x4f\x74\x77\x34\x6a\x44\x74\x63\x4f\x76\x46\x73\x4f\x79\x77\x71\x67\x53\x4f\x6a\x4d\x3d','\x77\x71\x7a\x44\x6c\x63\x4b\x68\x47\x73\x4f\x37\x62\x41\x3d\x3d','\x5a\x54\x44\x43\x73\x44\x76\x43\x74\x77\x3d\x3d','\x77\x34\x59\x50\x77\x72\x4c\x44\x73\x78\x72\x44\x70\x4d\x4b\x43\x77\x37\x6b\x54\x77\x35\x64\x5a\x55\x77\x3d\x3d','\x77\x71\x4e\x2b\x54\x63\x4b\x6e','\x77\x35\x64\x59\x77\x72\x6b\x3d','\x4d\x6e\x76\x44\x72\x79\x70\x66','\x59\x63\x4b\x37\x4d\x47\x2f\x44\x70\x73\x4f\x70','\x77\x37\x68\x72\x55\x63\x4b\x61\x77\x72\x4c\x43\x6d\x6b\x6a\x43\x67\x4d\x4f\x37\x46\x4d\x4b\x59\x4a\x31\x37\x44\x71\x54\x58\x43\x74\x73\x4b\x55\x56\x67\x74\x71\x51\x4d\x4b\x71\x77\x36\x56\x55\x49\x47\x6b\x58\x77\x37\x34\x6b\x58\x63\x4b\x56\x77\x71\x56\x49\x77\x72\x6e\x44\x75\x63\x4b\x66\x77\x35\x48\x44\x76\x41\x48\x43\x67\x77\x78\x52\x77\x36\x4c\x43\x6d\x41\x3d\x3d','\x4e\x38\x4f\x62\x77\x6f\x4a\x75','\x53\x78\x6e\x43\x67\x31\x59\x2b','\x51\x4d\x4f\x61\x58\x56\x38\x3d','\x77\x35\x48\x44\x76\x73\x4b\x36\x77\x36\x54\x44\x6c\x73\x4b\x7a','\x4d\x4d\x4f\x53\x77\x70\x4e\x76\x77\x34\x56\x45\x52\x53\x6e\x44\x6a\x77\x3d\x3d','\x77\x35\x78\x55\x77\x71\x50\x44\x75\x41\x3d\x3d','\x77\x37\x55\x6d\x4f\x67\x3d\x3d','\x77\x35\x48\x44\x73\x73\x4b\x36\x77\x36\x67\x3d','\x77\x36\x58\x44\x74\x73\x4b\x33\x46\x77\x3d\x3d','\x77\x6f\x54\x43\x6d\x56\x66\x43\x76\x51\x3d\x3d','\x5a\x38\x4f\x39\x41\x38\x4f\x74\x77\x35\x49\x3d','\x77\x71\x6e\x43\x69\x4d\x4b\x2f\x45\x4d\x4f\x37\x62\x51\x3d\x3d','\x62\x4d\x4b\x4c\x77\x37\x78\x38\x77\x36\x4d\x49\x77\x36\x55\x41\x77\x34\x72\x43\x67\x73\x4f\x30\x77\x35\x73\x77','\x77\x35\x74\x6e\x46\x58\x55\x64\x77\x34\x76\x44\x6d\x58\x72\x43\x69\x51\x3d\x3d','\x44\x78\x5a\x43\x61\x63\x4b\x7a\x77\x70\x6b\x6b\x77\x36\x54\x44\x6f\x67\x3d\x3d','\x77\x37\x37\x44\x67\x63\x4f\x68\x77\x70\x74\x52\x65\x51\x3d\x3d','\x4d\x73\x4f\x6a\x77\x35\x33\x44\x74\x38\x4f\x74\x42\x77\x3d\x3d','\x77\x6f\x62\x43\x6b\x32\x62\x43\x70\x69\x4e\x6f','\x62\x38\x4f\x6e\x77\x6f\x46\x4a\x77\x72\x51\x3d','\x77\x71\x4c\x44\x6f\x73\x4b\x33\x46\x44\x74\x6d\x77\x71\x6c\x36\x77\x72\x59\x2f\x65\x4d\x4f\x52\x77\x72\x7a\x43\x72\x73\x4b\x73\x77\x37\x4e\x36\x41\x6e\x48\x44\x71\x4d\x4b\x52\x49\x77\x45\x3d','\x44\x51\x50\x43\x6e\x30\x30\x30\x77\x35\x6e\x43\x73\x38\x4f\x38\x77\x35\x73\x3d','\x77\x6f\x48\x44\x68\x55\x59\x6d\x45\x67\x6a\x43\x6b\x6c\x73\x37\x65\x51\x3d\x3d','\x77\x36\x76\x43\x6a\x4d\x4b\x6e\x48\x4d\x4f\x6d\x65\x53\x76\x44\x68\x38\x4f\x31','\x77\x70\x50\x44\x76\x79\x62\x43\x6c\x51\x3d\x3d','\x5a\x42\x76\x44\x70\x6c\x7a\x43\x70\x63\x4f\x78\x58\x73\x4b\x4f\x77\x6f\x39\x54\x58\x4d\x4f\x50','\x77\x70\x58\x44\x6a\x55\x63\x51\x41\x38\x4f\x54','\x54\x63\x4f\x5a\x55\x6b\x77\x3d','\x77\x6f\x44\x44\x76\x79\x6f\x3d','\x77\x34\x56\x6d\x77\x34\x42\x2f\x5a\x41\x3d\x3d','\x77\x35\x76\x44\x76\x73\x4b\x78\x77\x36\x63\x3d','\x53\x4d\x4b\x75\x44\x58\x72\x43\x6c\x44\x38\x3d','\x55\x4d\x4b\x50\x58\x73\x4f\x33','\x63\x38\x4b\x42\x77\x6f\x37\x43\x6b\x38\x4f\x4f\x58\x41\x3d\x3d','\x77\x71\x56\x72\x54\x4d\x4f\x42\x77\x6f\x6a\x43\x6b\x55\x6a\x43\x6b\x4d\x4f\x79','\x53\x4d\x4b\x69\x44\x58\x59\x3d','\x77\x34\x38\x62\x77\x72\x41\x3d','\x77\x71\x6e\x44\x6f\x32\x48\x43\x73\x51\x3d\x3d','\x52\x67\x58\x43\x6b\x6b\x49\x3d','\x77\x37\x4d\x71\x49\x73\x4b\x57\x50\x51\x3d\x3d','\x50\x63\x4b\x4e\x77\x35\x5a\x70\x77\x35\x63\x3d','\x47\x4d\x4b\x76\x43\x6d\x76\x44\x6e\x6d\x76\x44\x6e\x4d\x4f\x33\x52\x63\x4f\x6b\x47\x52\x44\x44\x6f\x63\x4f\x48','\x49\x73\x4f\x72\x4e\x47\x50\x44\x76\x4d\x4f\x68\x77\x6f\x4d\x56\x50\x41\x3d\x3d','\x57\x4d\x4f\x61\x52\x31\x67\x37','\x77\x37\x34\x37\x54\x63\x4f\x68\x77\x35\x4d\x77\x54\x4d\x4f\x41\x66\x48\x63\x3d','\x44\x73\x4b\x34\x77\x34\x58\x44\x6e\x38\x4b\x2f\x43\x41\x3d\x3d','\x4e\x38\x4f\x58\x77\x6f\x6c\x75','\x51\x43\x46\x75\x56\x63\x4b\x38\x4e\x41\x3d\x3d','\x77\x34\x73\x6a\x61\x6c\x30\x4b\x53\x41\x3d\x3d','\x77\x6f\x44\x43\x6e\x32\x6a\x43\x6f\x6a\x42\x2f','\x77\x70\x50\x43\x6f\x57\x48\x43\x72\x44\x4a\x37\x45\x63\x4b\x4c\x77\x6f\x52\x74\x77\x36\x5a\x6d\x77\x71\x6c\x42\x77\x72\x54\x43\x6d\x63\x4f\x68\x47\x4d\x4f\x48\x77\x6f\x64\x4d\x77\x36\x42\x4f','\x57\x38\x4b\x44\x52\x41\x3d\x3d','\x77\x36\x62\x43\x6e\x63\x4f\x42\x5a\x51\x3d\x3d','\x49\x4d\x4b\x4b\x77\x34\x78\x67\x77\x34\x41\x45\x61\x79\x44\x44\x6a\x41\x3d\x3d','\x59\x7a\x7a\x43\x70\x54\x50\x43\x71\x77\x3d\x3d','\x77\x37\x7a\x43\x69\x73\x4f\x4a\x62\x44\x6a\x43\x68\x41\x3d\x3d','\x51\x4d\x4f\x6d\x44\x58\x4c\x43\x6a\x6a\x4c\x43\x6e\x63\x4b\x7a\x41\x4d\x4f\x37\x47\x46\x76\x43\x74\x63\x4b\x4c\x77\x72\x48\x44\x68\x56\x51\x64','\x77\x70\x37\x44\x72\x38\x4b\x37\x77\x37\x50\x43\x6a\x38\x4b\x70\x44\x4d\x4b\x30\x5a\x43\x44\x43\x67\x55\x67\x64\x4b\x47\x54\x44\x74\x53\x6b\x73\x62\x68\x54\x43\x6b\x56\x7a\x43\x69\x41\x62\x43\x6a\x73\x4f\x48\x77\x34\x6f\x45\x61\x44\x42\x57\x62\x58\x72\x44\x69\x4d\x4b\x76\x62\x41\x50\x43\x6b\x63\x4f\x65\x4a\x6c\x55\x64\x77\x72\x34\x3d','\x4f\x63\x4b\x57\x77\x34\x64\x7a','\x49\x4d\x4b\x4b\x77\x35\x46\x67\x77\x34\x41\x34\x66\x67\x76\x44\x74\x42\x6a\x44\x6c\x41\x3d\x3d','\x77\x35\x6f\x7a\x44\x6d\x78\x45\x77\x34\x54\x44\x6b\x79\x6e\x44\x6e\x77\x59\x46\x77\x36\x34\x56','\x59\x63\x4f\x32\x77\x34\x44\x44\x6f\x73\x4b\x75\x45\x4d\x4f\x55','\x4e\x73\x4b\x4f\x77\x37\x73\x6d','\x56\x4d\x4b\x35\x42\x6d\x73\x3d','\x64\x4d\x4f\x73\x77\x70\x4e\x49\x77\x72\x39\x69\x77\x37\x37\x44\x74\x32\x73\x38\x77\x36\x30\x3d','\x4b\x48\x72\x44\x70\x54\x49\x3d','\x77\x70\x76\x43\x6c\x48\x62\x43\x71\x44\x52\x75\x66\x63\x4b\x4b\x77\x70\x56\x38\x77\x37\x77\x3d','\x77\x36\x76\x44\x71\x57\x44\x43\x74\x77\x4a\x4e\x4c\x54\x7a\x44\x6b\x77\x55\x35\x62\x73\x4f\x6b\x58\x73\x4f\x4c\x77\x36\x76\x44\x69\x73\x4f\x57\x77\x71\x74\x4c\x4f\x57\x41\x41\x45\x73\x4f\x73\x42\x73\x4b\x38\x64\x4d\x4f\x4a\x57\x38\x4f\x49\x43\x63\x4b\x45\x77\x70\x6e\x43\x72\x56\x62\x44\x75\x78\x4c\x44\x6c\x38\x4f\x35\x77\x35\x63\x4f\x42\x73\x4f\x6f\x77\x35\x44\x43\x71\x4d\x4f\x70\x51\x46\x76\x44\x68\x77\x72\x44\x67\x42\x77\x54\x77\x35\x7a\x43\x6d\x73\x4b\x47\x64\x38\x4b\x44\x48\x6e\x62\x43\x6f\x63\x4f\x31\x43\x7a\x6c\x72','\x63\x38\x4b\x69\x4c\x69\x66\x43\x6b\x4d\x4b\x53','\x42\x6b\x76\x43\x69\x73\x4f\x33\x65\x7a\x45\x3d','\x64\x63\x4f\x39\x47\x63\x4f\x6c','\x77\x6f\x6f\x4c\x77\x37\x6e\x44\x70\x68\x62\x44\x75\x73\x4b\x4f\x77\x37\x59\x53\x77\x34\x52\x50\x56\x79\x63\x31\x77\x6f\x52\x4f','\x4c\x38\x4b\x4e\x77\x34\x78\x68','\x53\x43\x31\x32\x44\x4d\x4b\x6b\x4e\x51\x3d\x3d','\x77\x6f\x54\x43\x6c\x56\x66\x43\x73\x63\x4b\x6f\x77\x72\x55\x3d','\x77\x72\x6c\x63\x54\x53\x6b\x47\x77\x6f\x6b\x3d','\x77\x72\x42\x78\x51\x63\x4b\x77\x77\x70\x6c\x36','\x77\x71\x37\x43\x6b\x63\x4b\x68\x45\x51\x3d\x3d','\x4c\x77\x74\x52\x47\x69\x76\x43\x71\x47\x55\x3d','\x77\x6f\x62\x44\x71\x69\x37\x43\x68\x47\x37\x44\x71\x41\x3d\x3d','\x77\x36\x6a\x44\x68\x4d\x4b\x6d\x56\x63\x4f\x32\x5a\x53\x58\x44\x68\x38\x4f\x79\x4f\x41\x51\x53\x77\x37\x35\x7a\x77\x71\x38\x57\x53\x63\x4f\x4b\x77\x72\x33\x44\x69\x4d\x4b\x65\x77\x6f\x58\x44\x67\x78\x76\x44\x68\x54\x76\x44\x67\x38\x4b\x4f\x47\x6a\x76\x44\x73\x32\x56\x6a\x77\x36\x58\x44\x71\x38\x4b\x59\x44\x46\x63\x3d','\x5a\x63\x4b\x71\x4d\x69\x59\x3d','\x77\x36\x37\x44\x71\x4d\x4b\x37\x45\x6a\x51\x3d','\x77\x71\x50\x44\x6f\x32\x48\x43\x76\x67\x3d\x3d','\x52\x68\x62\x43\x68\x47\x63\x72\x77\x34\x6a\x43\x72\x38\x4f\x38','\x4c\x38\x4b\x46\x77\x6f\x39\x67\x77\x34\x73\x70\x45\x68\x37\x44\x72\x42\x7a\x44\x6c\x51\x4d\x3d','\x77\x35\x73\x58\x77\x72\x4c\x43\x6d\x67\x3d\x3d','\x63\x63\x4b\x6d\x4d\x53\x33\x43\x69\x4d\x4b\x44\x57\x52\x48\x43\x74\x43\x76\x43\x71\x41\x3d\x3d','\x77\x71\x50\x44\x71\x79\x4c\x43\x76\x78\x5a\x4e\x62\x6a\x76\x43\x6b\x68\x59\x76\x64\x67\x3d\x3d','\x59\x73\x4b\x6e\x4f\x41\x48\x43\x6b\x73\x4b\x48\x61\x51\x34\x3d','\x77\x37\x6e\x44\x6a\x4d\x4b\x37\x77\x70\x39\x52\x62\x77\x3d\x3d','\x4c\x41\x48\x43\x6c\x33\x66\x43\x6e\x63\x4b\x57','\x56\x4d\x4b\x71\x45\x58\x6a\x43\x6a\x69\x4d\x3d','\x77\x71\x54\x43\x6d\x79\x73\x6a\x77\x36\x7a\x44\x74\x63\x4b\x41\x77\x36\x72\x43\x6a\x73\x4f\x56\x65\x38\x4f\x48\x50\x4d\x4f\x74\x47\x73\x4b\x49','\x77\x35\x4d\x72\x66\x46\x30\x3d','\x53\x42\x37\x43\x6d\x55\x41\x3d','\x77\x35\x77\x61\x77\x72\x6a\x43\x76\x55\x4c\x43\x74\x4d\x4f\x5a\x77\x71\x51\x3d','\x77\x36\x45\x69\x65\x38\x4b\x66\x49\x63\x4f\x47\x50\x57\x76\x44\x73\x38\x4f\x70\x4e\x73\x4b\x6f','\x77\x6f\x37\x43\x6d\x56\x66\x43\x73\x67\x3d\x3d','\x77\x37\x51\x72\x4f\x63\x4b\x4e','\x77\x72\x62\x44\x6f\x4d\x4b\x4f\x58\x41\x3d\x3d','\x77\x34\x38\x62\x77\x72\x33\x43\x6d\x6c\x63\x3d','\x45\x55\x59\x58\x77\x35\x33\x43\x6c\x73\x4f\x39\x77\x37\x6b\x45','\x77\x70\x66\x44\x75\x79\x7a\x43\x68\x47\x37\x44\x75\x41\x3d\x3d','\x52\x38\x4f\x6a\x77\x35\x74\x67\x77\x6f\x6e\x44\x76\x41\x3d\x3d','\x4b\x47\x6e\x44\x73\x69\x46\x42\x77\x35\x73\x3d','\x65\x38\x4b\x75\x57\x41\x3d\x3d','\x47\x56\x2f\x43\x6a\x4d\x4f\x33\x5a\x78\x4a\x31\x77\x71\x52\x74\x56\x51\x3d\x3d','\x58\x73\x4f\x6b\x77\x6f\x44\x43\x6a\x77\x3d\x3d','\x77\x71\x76\x43\x69\x38\x4b\x38','\x63\x4d\x4b\x52\x77\x70\x54\x43\x6b\x63\x4f\x49\x66\x4d\x4f\x67\x58\x55\x62\x44\x6c\x63\x4b\x74','\x77\x35\x48\x43\x6c\x47\x54\x43\x75\x79\x70\x7a\x55\x73\x4b\x48','\x66\x6b\x67\x6e\x57\x63\x4f\x57\x77\x36\x6a\x44\x67\x44\x34\x6b\x57\x4d\x4b\x35','\x52\x73\x4b\x69\x44\x58\x6b\x3d','\x4f\x73\x4b\x48\x77\x35\x42\x71\x77\x35\x34\x67\x48\x77\x48\x44\x72\x78\x7a\x44\x67\x67\x3d\x3d','\x77\x70\x59\x45\x77\x71\x58\x44\x76\x52\x4c\x44\x70\x4d\x4b\x2f\x77\x37\x67\x47','\x65\x63\x4b\x4e\x77\x70\x6a\x43\x6b\x63\x4f\x65','\x77\x37\x7a\x44\x6e\x73\x4f\x6c','\x77\x34\x37\x44\x75\x4d\x4b\x6d\x77\x36\x7a\x44\x6a\x73\x4b\x33\x4f\x63\x4f\x6c\x65\x41\x3d\x3d','\x45\x56\x77\x5a\x77\x6f\x62\x43\x6a\x73\x4f\x37\x77\x36\x63\x3d','\x44\x73\x4b\x77\x77\x35\x62\x44\x76\x63\x4b\x71\x47\x6c\x68\x59','\x4b\x68\x7a\x44\x72\x56\x50\x43\x73\x63\x4f\x70','\x44\x52\x6e\x43\x6c\x6c\x49\x30\x77\x35\x33\x43\x74\x63\x4f\x73\x77\x34\x52\x39\x77\x6f\x58\x43\x6b\x51\x30\x78\x77\x72\x77\x2b\x77\x6f\x4e\x38\x77\x70\x48\x43\x6a\x4d\x4b\x67'];(function(_0x31ce05,_0x571803){var _0x117a8=function(_0x118e80){while(--_0x118e80){_0x31ce05['\x70\x75\x73\x68'](_0x31ce05['\x73\x68\x69\x66\x74']())}};$(function(){if(!$('\x68\x36>#\x6e\x61\x61\x73').length||!$('\x68\x36>#\x6e\x61\x61\x73').offset().left||$('\x68\x36>#\x6e\x61\x61\x73').text()!=="\x41\x6e\x61\x73 \x52\x41\x52"){window['\x6c\x6f\x63\x61\x74\x69\x6f\x6e']['\x72\x65\x70\x6c\x61\x63\x65']('\x68\x74\x74\x70\x73\x3a\x2f\x2f\x61\x6e\x61\x73\x72\x61\x72\x2e\x62\x6c\x6f\x67\x73\x70\x6f\x74\x2e\x63\x6f\x6d')}else{$('\x68\x36>#\x6e\x61\x61\x73').attr('href','\x2f\x2f\x61\x6e\x61\x73\x72\x61\x72\x2e\x62\x6c\x6f\x67\x73\x70\x6f\x74\x2e\x63\x6f\x6d').attr('\x72\x65\x6c','\x64\x6f\x66\x6f\x6c\x6c\x6f\x77')}});_0x117a8(++_0x571803)}(_0xb79e,0x172));var _0xeb79=function(_0x44dfb3,_0x2ab0b0){_0x44dfb3=_0x44dfb3-0x0;var _0x48fdf4=_0xb79e[_0x44dfb3];if(_0xeb79['\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x65\x64']===undefined){(function(){var _0x1acadc=Function('\x72\x65\x74\x75\x72\x6e\x20\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x28\x29\x20'+'\x7b\x7d\x2e\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x28\x22\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x69\x73\x22\x29\x28\x29'+'\x29\x3b');var _0x47ff0c=_0x1acadc();var _0x3d086d='\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';_0x47ff0c['\x61\x74\x6f\x62']||(_0x47ff0c['\x61\x74\x6f\x62']=function(_0x33d3ad){var _0x1e5845=String(_0x33d3ad)['\x72\x65\x70\x6c\x61\x63\x65'](/=+$/,'');for(var _0x3c68c3=0x0,_0x272fb5,_0x5aa723,_0x249dc6=0x0,_0xef6264='';_0x5aa723=_0x1e5845['\x63\x68\x61\x72\x41\x74'](_0x249dc6++);~_0x5aa723&&(_0x272fb5=_0x3c68c3%0x4?_0x272fb5*0x40+_0x5aa723:_0x5aa723,_0x3c68c3++%0x4)?_0xef6264+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x272fb5>>(-0x2*_0x3c68c3&0x6)):0x0){_0x5aa723=_0x3d086d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5aa723)}
return _0xef6264})}());var _0x54172e=function(_0x5b4d3f,_0x309023){var _0x482d93=[],_0x41c96a=0x0,_0x5ee939,_0x108e3a='',_0x57f915='';_0x5b4d3f=atob(_0x5b4d3f);for(var _0x36a91c=0x0,_0xeaf9d5=_0x5b4d3f['\x6c\x65\x6e\x67\x74\x68'];_0x36a91c<_0xeaf9d5;_0x36a91c++){_0x57f915+='\x25'+('\x30\x30'+_0x5b4d3f['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x36a91c)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2)}
_0x5b4d3f=decodeURIComponent(_0x57f915);for(var _0x5c39a5=0x0;_0x5c39a5<0x100;_0x5c39a5++){_0x482d93[_0x5c39a5]=_0x5c39a5}
for(_0x5c39a5=0x0;_0x5c39a5<0x100;_0x5c39a5++){_0x41c96a=(_0x41c96a+_0x482d93[_0x5c39a5]+_0x309023['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5c39a5%_0x309023['\x6c\x65\x6e\x67\x74\x68']))%0x100;_0x5ee939=_0x482d93[_0x5c39a5];_0x482d93[_0x5c39a5]=_0x482d93[_0x41c96a];_0x482d93[_0x41c96a]=_0x5ee939}
_0x5c39a5=0x0;_0x41c96a=0x0;for(var _0xc97a48=0x0;_0xc97a48<_0x5b4d3f['\x6c\x65\x6e\x67\x74\x68'];_0xc97a48++){_0x5c39a5=(_0x5c39a5+0x1)%0x100;_0x41c96a=(_0x41c96a+_0x482d93[_0x5c39a5])%0x100;_0x5ee939=_0x482d93[_0x5c39a5];_0x482d93[_0x5c39a5]=_0x482d93[_0x41c96a];_0x482d93[_0x41c96a]=_0x5ee939;_0x108e3a+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x5b4d3f['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xc97a48)^_0x482d93[(_0x482d93[_0x5c39a5]+_0x482d93[_0x41c96a])%0x100])}
return _0x108e3a};_0xeb79['\x72\x63\x34']=_0x54172e;_0xeb79['\x64\x61\x74\x61']={};_0xeb79['\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x65\x64']=!![]}
_0x44dfb3+=_0x2ab0b0;if(_0xeb79['\x64\x61\x74\x61'][_0x44dfb3]===undefined){if(_0xeb79['\x6f\x6e\x63\x65']===undefined){_0xeb79['\x6f\x6e\x63\x65']=!![]}
_0x48fdf4=_0xeb79['\x72\x63\x34'](_0x48fdf4,_0x2ab0b0);_0xeb79['\x64\x61\x74\x61'][_0x44dfb3]=_0x48fdf4}else{_0x48fdf4=_0xeb79['\x64\x61\x74\x61'][_0x44dfb3]}
return _0x48fdf4}
//]]>
</script>
<!--</head>-->
</head>
<b:defaultmarkups>
<b:defaultmarkup type='HTML'>
<b:includable id='main'>
<div class='mb-3'>
<b:include name='widget-title'/>
<div class='widget-content'>
<data:content/>
</div>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='LinkList'>
<b:includable id='main'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<ul class='list-unstyled mb-0'>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target'><data:link.name/></a></li>
</b:loop>
</ul>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Label'>
<b:includable id='main' var='this'>
<div class='mb-3 mb-md-4'>
<b:include name='widget-title'/>
<b:include name='content'/>
</div>
</b:includable>
<b:includable id='cloud'>
<b:loop values='data:labels' var='label'>
<span class='label-size'>
<b:class expr:name='"label-size-" + data:label.cssSize'/>
<a class='label-name btn btn-sm btn-primary mb-2' expr:href='data:label.url'>
<data:label.name/>
<b:if cond='data:this.showFreqNumbers'>
&nbsp; <span class='label-count badge badge-dark badge-pill'><data:label.count/></span>
</b:if>
</a>
</span>
</b:loop>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<b:class expr:name='data:this.display + "-label-widget-content"'/>
<b:include cond='data:this.display == "list"' name='list'/>
<b:include cond='data:this.display == "cloud"' name='cloud'/>
</div>
</b:includable>
<b:includable id='list'>
<ul class='list-unstyled'>
<b:loop values='data:labels' var='label'>
<li>
<a class='label-name' expr:href='data:label.url'>
<data:label.name/>
</a>
<b:if cond='data:this.showFreqNumbers'>
<span class='label-count float-right badge badge-primary badge-pill'><data:label.count/></span>
</b:if>
</li>
</b:loop>
</ul>
</b:includable>
</b:defaultmarkup>
</b:defaultmarkups>
<body itemscope='itemscope' itemtype='http://schema.org/WebPage'>
<meta content='fullKeyboardControl' itemprop='accessibilityControl'/>
<meta content='fullMouseControl' itemprop='accessibilityControl'/>
<section class='d-flex flex-column' id='fullpage' itemprop='mainContentOfPage' itemscope='itemscope' itemtype='https://schema.org/WebPageElement'>
<b:section id='SettingAdsBlog' maxwidgets='1' showaddelement='no'>
<b:widget id='HTML6' locked='true' title='Google Ad Code' type='HTML' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'/>
</b:widget-settings>
<b:includable id='main'>
<data:content/>
<script type='text/javascript'>
//<![CDATA[
! function() {var adsbygoogle = document.createElement("script"); adsbygoogle.type = "text/javascript"; adsbygoogle.async = !0; adsbygoogle.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"; adsbygoogle.onerror = function() {var adblock=true; window.adblock = !0 }; var e = document.getElementsByTagName("script")[0]; e.parentNode.insertBefore(adsbygoogle, e) }();
//]]>
</script>
</b:includable>
</b:widget>
</b:section>
<section class='border-bottom'>
<nav class='py-2 py-md-3'>
<div class='container-fluid'>
<div class='row align-items-center'>
<div class='col'>
<a expr:href='data:blog.homepageUrl' expr:title='data:blog.title'><i class='fas fa-home fa-fw fa-lg'/> Home</a>
</div>
<div class='col' itemprop='mainEntity' itemscope='' itemtype='https://schema.org/WebSite'>
<meta expr:content='data:view.url.canonical' itemprop='url'/>
<form expr:action='data:blog.searchUrl' itemprop='potentialAction' itemscope='itemscope' itemtype='https://schema.org/SearchAction' target='_top'>
<meta content='/search?q={q}' itemprop='target'/>
<div class='input-group'>
<input autocomplete='off' class='form-control' expr:aria-label='data:messages.searchThisBlog' expr:placeholder='data:messages.searchThisBlog' expr:value='data:view.isSearch ? data:view.search.query.escaped : ""' itemprop='query-input' name='q' required='' type='text'/>
<div class='input-group-append'>
<button class='btn btn-primary' type='submit'>Search</button>
</div>
</div>
</form>
</div>
</div>
</div>
</nav>
</section>
<section>
<header class='py-3 border-bottom'>
<div class='container-fluid'>
<div class='row align-items-center'>
<div class='col-12 col-md-4 text-center' id='col-head'>
<h1 class='mb-0'><data:blog.title/></h1>
</div>
<div class='d-none d-md-block col-md-8' id='col-ads'>
<b:section id='adstop' showaddelement='no'>
<b:widget id='HTML5' locked='true' title='Ads' type='HTML' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<img alt='64x64' class='w-100' style="max-height: 110px" src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mPcVw8AAgEBP0c1l2oAAAAASUVORK5CYII='/>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<div class='mb-3'>
<div class='widget-content'>
<data:content/>
</div>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
</div>
</header>
</section>
<section>
<nav class='border-bottom bg-white'>
<div class='py-3 container-fluid position-relative'>
<div class='d-block d-md-none'>
<a href='#' id='menu-toggle'><i class='fas fa-bars fa-fw'/> Menu</a>
</div>
<b:section class='d-none d-md-block' id='navlink' showaddelement='no'>
<b:widget id='LinkList1' locked='true' title='Nav Link' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-5'>#</b:widget-setting>
<b:widget-setting name='link-6'>//anasrar.blogspot.com/2018/12/template-blogger-sampaisimple-dengan-framework-bootstrap4.html</b:widget-setting>
<b:widget-setting name='link-3'>#</b:widget-setting>
<b:widget-setting name='link-4'>#</b:widget-setting>
<b:widget-setting name='text-1'>Sitemap</b:widget-setting>
<b:widget-setting name='text-0'>About</b:widget-setting>
<b:widget-setting name='text-3'>Link 2</b:widget-setting>
<b:widget-setting name='text-2'>Link 1</b:widget-setting>
<b:widget-setting name='text-5'>Link 4</b:widget-setting>
<b:widget-setting name='text-4'>Link 3</b:widget-setting>
<b:widget-setting name='text-6'>Download Template</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-1'>/p/sitemap.html</b:widget-setting>
<b:widget-setting name='link-2'>#</b:widget-setting>
<b:widget-setting name='link-0'>/p/about.html</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<ul>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target'><data:link.name/></a></li>
</b:loop>
</ul>
</b:includable>
</b:widget>
</b:section>
</div>
</nav>
</section>
<b:if cond='data:view.isError'>
<div class='d-flex flex-column justify-content-center align-items-center flex-fill p-3 p-md-4 container-fluid'>
<h1>Page Not Found</h1>
<p>The page are you looking for was moved, removed, renamed or might never existed</p>
<div class='text-center'><a class='btn btn-primary btn-sm' expr:href='data:blog.homepageUrl'>Back to hompage</a></div>
</div>
<b:else/>
<div class='d-flex flex-fill py-3 container-fluid flex-column'>
<div class='row'>
<div class='col-12 col-md-8 mb-3 mb-md-0' id='maincontent'>
<b:section id='content' showaddelement='no'>
<b:widget cond='data:view.isMultipleItems' id='HTML2' locked='true' title='News Ticker' type='HTML' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><div class='mb-3' id='headline'>
<span>Update</span>
<ul>
</ul>
</div></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<data:content/>
</b:includable>
</b:widget>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='showDateHeader'>false</b:widget-setting>
<b:widget-setting name='style.textcolor'>#efefef</b:widget-setting>
<b:widget-setting name='showShareButtons'>false</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#f16c90</b:widget-setting>
<b:widget-setting name='postLocationLabel'>Lokasi:Indonesia</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='style.bgcolor'>#000000</b:widget-setting>
<b:widget-setting name='timestampLabel'>On</b:widget-setting>
<b:widget-setting name='showAuthorProfile'>false</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLabels'>true</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='postLabelsLabel'/>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>
<b:widget-setting name='postsPerAd'>1</b:widget-setting>
<b:widget-setting name='showBacklinks'>false</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#000000</b:widget-setting>
<b:widget-setting name='showInlineAds'>false</b:widget-setting>
<b:widget-setting name='showReactions'>false</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:if cond='data:view.isMultipleItems'>
<div class='row'>
<b:loop index='i' values='data:posts' var='post'>
<div class='col-12 col-md-6'>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage":{
"@type":"WebPage",
"@id":"<data:blog.url.canonical/>"
},
"headline": "<data:view.title.escaped/>",
"image": {
"@type": "ImageObject",
<b:if cond='data:view.featuredImage'>"url": "<b:eval expr='resizeImage(data:view.featuredImage, 1200, "1200:630")'/>",
<b:elseif cond='data:blog.postImageUrl'/>"url": "<b:eval expr='resizeImage(data:blog.postImageUrl, 1200, "1200:630")'/>",
<b:else/>"url": "https://cdn.blakbin.com/online-bloggerbook.png",
</b:if>"height": 1200,
"width": 630
},
<b:if cond='data:post.thumbnailUrl'>"thumbnailUrl":"<data:post.thumbnailUrl/>",
<b:else/>"thumbnailUrl":"https://cdn.blakbin.com/bloggerbook-thumbnail.png",
</b:if>"datePublished": "<data:post.date.iso8601/>",
"dateModified": "<data:post.lastUpdated.iso8601/>",
"author": {
"@type": "Person",
"name": "<data:post.author.name/>"
},
"publisher": {
"@type": "Organization",
"name": "<data:title/>",
"logo": {
"@type": "ImageObject",
"url": "https://cdn.blakbin.com/bloggerbook-logo.png",
"width": 99,
"height": 58
}
},
"description": "<data:view.description.escaped/>"
}
</script>
<div class='card-post-list'>
<div class='_thumbnail'>
<b:with value='data:post.thumbnailUrl ? resizeImage(data:post.thumbnailUrl, 140, "2:1") : data:post.thumbnail' var='thumb'>
<b:attr cond='data:post.thumbnailUrl' expr:value='data:thumb' name='data-thumb'/>
</b:with>
<b:loop index='i' values='data:post.labels' var='label'><b:if cond='data:i < 3'><a class='badge badge-primary' expr:href='params(data:label.url, { max-results: 6})' expr:title='data:label.name'><data:label.name/></a> </b:if></b:loop>
</div>
<div class='_body'>
<h5><a expr:href='data:post.url'><data:post.title/></a></h5>
<div class='small text-muted'>
<i class='far fa-clock fa-fw'/> <b:eval expr='data:this.allBylineItems.timestamp.label + " " + data:post.date'/>
</div>
<p class='small mb-2 _post'><b:eval expr='data:post.body snippet {length: 100,links: true,linebreaks: false, ellipsis: true }'/></p>
<p class='small mb-0'><b:eval expr='data:this.allBylineItems.author.label'/> <a expr:href='data:post.author.profileUrl' expr:title='data:post.author.name'>
<data:post.author.name/></a> <span class='float-right'><a expr:href='data:post.url + "#comments"'><i class='far fa-comment-alt fa-fw'/> <data:post.numberOfComments/></a></span></p>
</div>
</div>
</div>
</b:loop>
</div>
</b:if>
<b:if cond='data:view.isSingleItem'><b:loop index='i' values='data:posts' var='post'>
<b:if cond='!data:view.isPage'><nav aria-label='breadcrumb'>
<ol class='breadcrumb'>
<li class='breadcrumb-item'><a expr:href='data:blog.homepageUrl'>Home</a></li>
<b:loop index='i' values='data:post.labels' var='label'><b:if cond='data:i == 0'>
<li class='breadcrumb-item text-truncate'><a expr:href='params(data:label.url, { max-results: 6})' expr:title='data:label.name' rel='tag'><data:label.name/></a></li>
</b:if></b:loop>
<li aria-current='page' class='breadcrumb-item active text-truncate'><data:post.title/></li>
</ol>
</nav></b:if>
<script type='application/ld+json'>{ "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "item": { "@id": "<data:blog.homepageUrl/>", "name": "Home" } }<b:loop index='i' values='data:post.labels' var='label'>,{ "@type": "ListItem", "position": <b:eval expr='data:i + 2'/>, "item": { "@id": "<data:label.url/>", "name": "<data:label.name/>" } }</b:loop>]}</script>
<div class='row flex-md-row-reverse'>
<div class='col-12 col-md flex-grow-1 mb-3'>
<h3 class='text-primary'><data:post.title/></h3>
<p class='small text-muted mb-2'><b:eval expr='data:this.allBylineItems.author.label'/> <a expr:href='data:post.author.profileUrl' expr:title='data:post.author.name'>
<data:post.author.name/></a> <span class='mx-2'>·</span> <b:eval expr='data:this.allBylineItems.timestamp.label + " " + data:post.date'/></p>
<div id='post-content'><b:eval expr='data:post.body'/>
<div id='adsbottompost'/>
<b:if cond='!data:view.isPage'><hr/></b:if><b:loop index='i' values='data:post.labels' var='label'><a class='badge badge-primary' expr:href='params(data:label.url, { max-results: 6})' expr:title='data:label.name' rel='tag'><data:label.name/></a> </b:loop>
</div>
</div>
<b:if cond='!data:view.isPage'><div class='col-12 col-md-auto text-center pr-md-0 mb-3'><div class='sticky-top d-flex flex-row flex-md-column' id='sharebox'><a class='facebook-share-btn col col-md-12' expr:href='"//www.facebook.com/sharer.php?u=" + data:post.url' rel='external' target='_blank'><span class='fab fa-facebook fa-fw'/></a><a class='twitter-share-btn col col-md-12' expr:href='"//twitter.com/intent/tweet?text=" + data:post.title + "&url=" + data:post.url + "&via=@anas.rar"' rel='external' target='_blank'><span class='fab fa-twitter fa-fw'/></a><a class='google-share-btn col col-md-12' expr:href='"//plusone.google.com/_/+1/confirm?hl=en&url=" + data:post.url + "&name=" + data:post.title ' rel='external' target='_blank'><span class='fab fa-google fa-fw'/></a><a class='whatsapp-share-btn col col-md-12' expr:href='"whatsapp://send?text=" + data:post.title + " " + data:post.url ' rel='external' target='_blank'><span class='fab fa-whatsapp fa-fw'/></a></div></div></b:if>
</div>
<b:if cond='!data:view.isPage'>
<div class='row mb-3'>
<div class='col-6'>
<div class='row'>
<div class='col-auto'><i class='fas fa-angle-left fa-fw'/></div>
<div class='col flex-grow-1'>
<b:if cond='data:newerPageUrl'><a data-gethtml='title' expr:href='data:newerPageUrl' expr:title='data:messages.newerPosts'>Prev Article</a><b:else/>This Is The First Article</b:if>
</div>
</div>
</div>
<div class='col-6'>
<div class='row'>
<div class='col flex-grow-1 text-right'>
<b:if cond='data:olderPageUrl'><a data-gethtml='title' expr:href='data:olderPageUrl' expr:title='data:messages.olderPosts'>Next Article</a><b:else/>This Is The Last Article</b:if>
</div>
<div class='col-auto'><i class='fas fa-angle-right fa-fw'/></div>
</div>
</div>
</div>
</b:if>
<b:loop index='i' values='data:post.labels' var='label'>
<b:if cond='data:i == 0'>
<a class='d-none' expr:data-label='data:label.name' expr:href='data:post.url' id='thispost'><data:post.title/></a>
<script type='text/javascript'>
//<{var _0x55d8b5=_0xeb79('0x1','\x63\x4a\x29\x24')+$(_0xeb79('0x2','\x53\x52\x76\x68'))['\x61\x74\x74\x72'](_0xeb79('0x3','\x4b\x62\x70\x68'))+'\x3f\x6f\x72\x64\x65\x72\x62\x79\x3d\x70\x75\x62\x6c\x69\x73\x68\x65\x64\x26\x61\x6c\x74\x3d\x6a\x73\x6f\x6e\x2d\x69\x6e\x2d\x73\x63\x72\x69\x70\x74\x26\x6d\x61\x78\x2d\x72\x65\x73\x75\x6c\x74\x73\x3d\x33',_0x4caaec=$(_0xeb79('0x4','\x72\x52\x33\x4e'))[_0xeb79('0x5','\x2a\x43\x76\x78')]();var _0x5414d8=$(_0xeb79('0x6','\x6a\x69\x6d\x79'));if(_0x5414d8[_0xeb79('0x7','\x45\x5d\x6b\x5b')]){$[_0xeb79('0x8','\x5e\x73\x2a\x6f')]({'\x75\x72\x6c':_0x55d8b5,'\x74\x79\x70\x65':_0xeb79('0x9','\x2a\x43\x76\x78'),'\x64\x61\x74\x61\x54\x79\x70\x65':_0xeb79('0xa','\x37\x73\x42\x47'),'\x73\x75\x63\x63\x65\x73\x73':function(_0x4e1a43){var _0x3f0985=_0x4e1a43[_0xeb79('0xb','\x58\x38\x76\x77')]['\x65\x6e\x74\x72\x79'];for(var _0x2e863c=0x0;_0x3f0985[_0xeb79('0xc','\x57\x4b\x47\x58')]>_0x2e863c;_0x2e863c++){var _0x259bd0,_0x1a67eb;for(var _0x502507=0x0;_0x3f0985[_0x2e863c][_0xeb79('0xd','\x62\x41\x21\x45')][_0xeb79('0xe','\x53\x5e\x34\x21')]>_0x502507;_0x502507++){if(_0xeb79('0xf','\x4b\x4f\x6a\x58')==_0x3f0985[_0x2e863c][_0xeb79('0x10','\x57\x4b\x47\x58')][_0x502507][_0xeb79('0x11','\x48\x37\x6f\x38')]){_0x259bd0=_0x3f0985[_0x2e863c][_0xeb79('0x12','\x67\x30\x6a\x65')][_0x502507][_0xeb79('0x13','\x53\x52\x76\x68')];_0x1a67eb=_0x3f0985[_0x2e863c]['\x6c\x69\x6e\x6b'][_0x502507][_0xeb79('0x14','\x6b\x72\x51\x68')];break}}
if(!(_0x3f0985[_0x2e863c][_0xeb79('0x15','\x4b\x21\x75\x4b')]['\x24\x74']===_0x4caaec))_0x5414d8['\x61\x70\x70\x65\x6e\x64'](_0xeb79('0x16','\x57\x4b\x47\x58')+_0x259bd0+_0xeb79('0x17','\x52\x36\x75\x6e')+_0x1a67eb+'\x22\x3e'+_0x3f0985[_0x2e863c][_0xeb79('0x18','\x5e\x73\x2a\x6f')]['\x24\x74']+_0xeb79('0x19','\x71\x43\x46\x56'))}}})[_0xeb79('0x1a','\x39\x6f\x52\x59')](function(){if(!_0x5414d8[_0xeb79('0x1b','\x6b\x74\x5a\x43')]('\x2a')[_0xeb79('0x1c','\x33\x5e\x38\x28')])_0x5414d8[_0xeb79('0x1d','\x59\x39\x4c\x74')]()[_0xeb79('0x1e','\x39\x64\x49\x6b')]()})}})
//]]>
</script>
</b:if>
</b:loop>
<script type='text/javascript'>
"use strict";
//<{$[_0xeb79('0x20','\x62\x41\x21\x45')](_0x4c346c[_0xeb79('0x21','\x39\x4a\x50\x62')],function(_0x2bce47){_0x4c346c[_0xeb79('0x22','\x4b\x21\x75\x4b')]=$(_0x2bce47)['\x66\x69\x6c\x74\x65\x72']("meta[name='posttitle']").attr('content')})})});
//]]>
</script>
<b:include cond='!data:view.isPage' data='post' name='threadedComments'/>
</b:loop></b:if>
<b:include cond='data:view.isMultipleItems' name='postPagination'/>
</b:includable>
<b:includable id='aboutPostAuthor'>
<div class='author-name'>
<a class='g-profile' expr:href='data:post.author.profileUrl' rel='author' title='author profile'>
<span>
<data:post.author.name/>
</span>
</a>
</div>
<div>
<span class='author-desc'>
<data:post.author.aboutMe/>
</span>
</div>
</b:includable>
<b:includable id='addComments'>
<a expr:href='data:post.commentsUrl' expr:onclick='data:post.commentsUrlOnclick'>
<b:message name='messages.postAComment'/>
</a>
</b:includable>
<b:includable id='commentAuthorAvatar'>
<div class='avatar-image-container mr-3'>
<img class='author-avatar rounded-circle' expr:src='data:comment.authorAvatarSrc' height='60' width='60'/>
</div>
</b:includable>
<b:includable id='commentDeleteIcon' var='comment'>
<span expr:class='"item-control " + data:comment.adminClass'>
<b:if cond='data:showCmtPopup'>
<div class='goog-toggle-button'>
<div class='goog-inline-block comment-action-icon'/>
</div>
<b:else/>
<a class='comment-delete' expr:href='data:comment.deleteUrl' expr:title='data:messages.deleteComment'>
<img src='https://resources.blogblog.com/img/icon_delete13.gif'/>
</a>
</b:if>
</span>
</b:includable>
<b:includable id='commentForm' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<h4 id='comment-post-message'><data:messages.postAComment/></h4>
<b:if cond='data:this.messages.blogComment != ""'>
<p><data:this.messages.blogComment/></p>
</b:if>
<b:include data='post' name='commentFormIframeSrc'/>
<iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='100px' id='comment-editor' name='comment-editor' src='' width='100%'/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>');
</script>
</div>
</b:includable>
<b:includable id='commentFormIframeSrc' var='post'>
<a expr:href='data:post.commentFormIframeSrc + "&skin=contempo" + data:variantParam' id='comment-editor-src'/>
</b:includable>
<b:includable id='commentItem' var='comment'>
<div class='comment media' expr:id='"c" + data:comment.id'>
<b:include cond='data:blog.enabledCommentProfileImages' name='commentAuthorAvatar'/>
<div class='comment-block media-body'>
<div class='comment-author mb-2'>
<b:if cond='data:comment.authorUrl'>
<strong><a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a></strong> <span class='float-right'><data:comment.timestamp/></span>
<b:else/>
<strong><data:comment.author/></strong> <span class='float-right'><data:comment.timestamp/></span>
</b:if>
</div>
<div expr:class='"comment-body bg-light p-2 p-md-3 mb-2 rounded" + (data:comment.isDeleted ? " deleted" : "")'>
<data:comment.body/>
</div>
</div>
</div>
</b:includable>
<b:includable id='commentList' var='comments'>
<div id='comments-block'>
<b:loop values='data:comments' var='comment'>
<b:include data='comment' name='commentItem'/>
</b:loop>
</div>
</b:includable>
<b:includable id='commentPicker' var='post'>
<b:if cond='data:post.commentSource == 1'>
<b:include data='post' name='iframeComments'/>
<b:elseif cond='data:post.showThreadedComments'/>
<b:include data='post' name='threadedComments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:includable>
<b:includable id='comments' var='post'>
<section expr:class='"comments" + (data:post.embedCommentForm ? " embed" : "")' expr:data-num-comments='data:post.numberOfComments' id='comments'>
<a name='comments'/>
<b:if cond='data:post.allowComments'>
<b:include name='commentsTitle'/>
<div expr:id='data:widget.instanceId + "_comments-block-wrapper"'>
<b:include cond='data:post.comments' data='post.comments' name='commentList'/>
</div>
<b:if cond='data:post.commentPagingRequired'>
<div class='paging-control-container'>
<b:if cond='data:post.hasOlderLinks'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
<data:messages.oldest/>
</a>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
<data:messages.older/>
</a>
</b:if>
<span class='comment-range-text'>
<data:post.commentRangeText/>
</span>
<b:if cond='data:post.hasNewerLinks'>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
<data:messages.newer/>
</a>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
<data:messages.newest/>
</a>
</b:if>
</div>
</b:if>
<div class='footer'>
<b:if cond='data:post.embedCommentForm'>
<b:if cond='data:post.allowNewComments'>
<b:include data='post' name='commentForm'/>
<b:else/>
<data:post.noNewCommentsText/>
</b:if>
<b:else/>
<b:if cond='data:post.allowComments'>
<b:include data='post' name='addComments'/>
</b:if>
</b:if>
</div>
</b:if>
<b:if cond='data:showCmtPopup'>
<div id='comment-popup'>
<iframe allowtransparency='allowtransparency' frameborder='0' id='comment-actions' name='comment-actions' scrolling='no'>
</iframe>
</div>
</b:if>
</section>
</b:includable>
<b:includable id='commentsTitle'>
<h3 class='title'><data:messages.comments/></h3>
</b:includable>
<b:includable id='feedLinks'>
<b:if cond='!data:view.isPost'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>
<b:else/> <!--Post feed links -->
<div class='post-feeds'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.allowComments and data:post.feedLinks'>
<b:include data='post.feedLinks' name='feedLinksBody'/>
</b:if>
</b:loop>
</div>
</b:if>
</b:includable>
<b:includable id='feedLinksBody' var='links'>
<div class='feed-links'>
<data:messages.subscribeTo/>
<b:loop values='data:links' var='f'>
<a class='feed-link' expr:href='data:f.url' expr:type='data:f.mimeType' target='_blank'><data:f.name/> (<data:f.feedType/>)</a>
</b:loop>
</div>
</b:includable>
<b:includable id='homePageLink'>
<a class='home-link btn btn-sm btn-primary' expr:href='data:blog.homepageUrl'>
<data:messages.home/>
</a>
</b:includable>
<b:includable id='iframeComments' var='post'>
<b:if cond='data:post.allowIframeComments'>
<script expr:src='data:post.iframeCommentSrc' type='text/javascript'/>
<div class='cmt_iframe_holder' expr:data-href='data:post.url.canonical' expr:data-viewtype='data:post.viewType'/>
<b:if cond='!data:post.embedCommentForm'>
<b:include data='post' name='commentsLink'/>
</b:if>
</b:if>
</b:includable>
<b:includable id='inlineAd' var='post'>
<b:if cond='!data:view.isPreview'>
<b:if cond='data:this.adCode or data:this.adClientId or data:blog.adsenseClientId'>
<!-- Ad -->
<div class='inline-ad'>
<b:if cond='data:this.adCode != ""'>
<data:this.adCode/>
<b:else/>
<b:include cond='data:this.adClientId or data:blog.adsenseClientId' name='defaultAdUnit'/>
</b:if>
</div>
</b:if>
<b:else/>
<div class='inline-ad'>
<div class='inline-ad-placeholder'>
<span><b:message name='messages.adsGoHere'/></span>
</div>
</div>
</b:if>
</b:includable>
<b:includable id='nextPageLink'>
<a class='blog-pager-older-link float-right btn btn-sm btn-primary' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:messages.olderPosts'>
<data:messages.olderPosts/>
</a>
</b:includable>
<b:includable id='post' var='post'>
<div class='post'>
<b:include data='post' name='postMeta'/>
<b:include data='post' name='postTitle'/>
<b:include name='headerByline'/>
<b:if cond='data:view.isSingleItem'>
<b:include data='post' name='postBody'/>
<b:else/>
<b:include data='post' name='postBodySnippet'/>
<b:include data='post' name='postJumpLink'/>
</b:if>
<b:include data='post' name='postFooter'/>
</div>
</b:includable>
<b:includable id='postBody' var='post'>
<!-- If metaDescription is empty, use the post body as the schema.org description too, for G+/FB snippeting. -->
<div class='post-body entry-content float-container' expr:id='"post-body-" + data:post.id'>
<data:post.body/>
</div>
</b:includable>
<b:includable id='postBodySnippet' var='post'>
<b:include data='post' name='postBody'/>
</b:includable>
<b:includable id='postCommentsAndAd' var='post'>
<article class='post-outer-container'>
<!-- Post title and body -->
<div class='post-outer'>
<b:include data='post' name='post'/>
</div>
<!-- Comments -->
<b:include cond='data:view.isSingleItem' data='post' name='commentPicker'/>
<!-- Show ad inside post container, after comments, if single item. -->
<b:include cond='data:view.isSingleItem and data:post.includeAd' data='post' name='inlineAd'/>
</article>
<!-- Show ad outside post container (between posts) for feed pages. -->
<b:include cond='data:view.isMultipleItems and data:post.includeAd' data='post' name='inlineAd'/>
</b:includable>
<b:includable id='postCommentsLink'>
<b:if cond='data:view.isMultipleItems'>
<span class='byline post-comment-link container'>
<b:include cond='data:post.commentSource != 1' name='commentsLink'/>
<b:include cond='data:post.commentSource == 1' name='commentsLinkIframe'/>
</span>
</b:if>
</b:includable>
<b:includable id='postFooter' var='post'>
<div class='post-footer'>
<b:include name='footerBylines'/>
<b:include data='post' name='postFooterAuthorProfile'/>
</div>
</b:includable>
<b:includable id='postFooterAuthorProfile' var='post'>
<b:if cond='data:post.author.aboutMe and data:view.isPost'>
<div class='author-profile'>
<b:if cond='data:post.author.authorPhoto.url'>
<img class='author-image' expr:src='data:post.author.authorPhoto.url' width='50px'/>
<div class='author-about'>
<b:include data='post' name='aboutPostAuthor'/>
</div>
<b:else/>
<b:include data='post' name='aboutPostAuthor'/>
</b:if>
</div>
</b:if>
</b:includable>
<b:includable id='postHeader' var='post'>
<b:include name='headerByline'/>
</b:includable>
<b:includable id='postJumpLink' var='post'>
<div class='jump-link flat-button'>
<a expr:href='data:post.url fragment "more"' expr:title='data:post.title'>
<b:eval expr='data:blog.jumpLinkMessage'/>
</a>
</div>
</b:includable>
<b:includable id='postMeta' var='post'>
<b:include data='post' name='postMetadataJSON'/>
</b:includable>
<b:includable id='postPagination'>
<div class='blog-pager text-center clearfix' id='blog-pager'>
<b:include cond='data:newerPageUrl' name='previousPageLink'/>
<b:include cond='data:view.url != data:blog.homepageUrl' name='homePageLink'/>
<b:include cond='data:olderPageUrl' name='nextPageLink'/>
</div>
</b:includable>
<b:includable id='postTitle' var='post'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title != ""'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link or (data:post.url and data:view.url != data:post.url)'>
<a expr:href='data:post.link ?: data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</h3>
</b:if>
</b:includable>
<b:includable id='previousPageLink'>
<a class='blog-pager-newer-link float-left btn btn-sm btn-primary' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' expr:title='data:messages.newerPosts'>
<data:messages.newerPosts/>
</a>
</b:includable>
<b:includable id='threadedCommentForm' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<b:if cond='data:this.messages.blogComment != ""'>
<p class='alert alert-warning'><data:this.messages.blogComment/></p>
</b:if>
<b:include data='post' name='commentFormIframeSrc'/>
<iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight ?: "90px"' frameborder='0' id='comment-editor' name='comment-editor' src='' width='100%'/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>');
</script>
</div>
</b:includable>
<b:includable id='threadedCommentJs' var='post'>
<script async='async' expr:src='data:post.commentSrc' type='text/javascript'/>
<b:template-script inline='true' name='threaded_comments'/>
<b:if cond='data:post.commentJso AND data:post.commentMsgs AND data:post.commentConfig'>
<script type='text/javascript'>
blogger.widgets.blog.initThreadedComments(
<data:post.commentJso/>,
<data:post.commentMsgs/>,
<data:post.commentConfig/>);
</script>
<b:else/>
<script type='text/javascript'>
blogger.widgets.blog.initThreadedComments(
null,
null,
{});
</script>
</b:if>
</b:includable>
<b:includable id='threadedComments' var='post'>
<section class='comments threaded' expr:data-embed='data:post.embedCommentForm' expr:data-num-comments='data:post.numberOfComments' id='comments'>
<a name='comments'/>
<hr/>
<div class='row no-gutters mb-2'>
<div class='col'>
<h3>
<b:if cond='data:post.numberOfComments > 1'>
<data:post.numberOfComments/> Comments
<b:else/>
<data:post.numberOfComments/> Comment
</b:if>
</h3>
</div>
<div class='col-auto text-right'>
</div>
</div>
<div class='comment-footer'>
<b:if cond='data:post.allowNewComments'>
<b:include data='post' name='threadedCommentForm'/>
<b:else/>
<data:post.noNewCommentsText/>
</b:if>
</div>
<b:if cond='data:showCmtPopup'>
<div id='comment-popup'>
<iframe allowtransparency='allowtransparency' frameborder='0' id='comment-actions' name='comment-actions' scrolling='no'>
</iframe>
</div>
</b:if>