-
Notifications
You must be signed in to change notification settings - Fork 125
/
Mediumish Blogger Version.xml
1922 lines (1868 loc) · 158 KB
/
Mediumish Blogger Version.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:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' expr:dir='data:blog.languageDirection' expr:lang='data:blog.locale' 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'><b:include name='removeattr'/><!--<head><b:section id='ElementerMeta' maxwidgets='1' showaddelement='no'>
<b:widget id='Blog3' 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'>#4a85db</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'>#bbbbbb</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='disableGooglePlusShare'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#efefef</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='reactionsLabel'>https://1.bp.blogspo</b:widget-setting>
<b:widget-setting name='showAuthorProfile'>true</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'>true</b:widget-setting>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>
<b:widget-setting name='postsPerAd'>1</b:widget-setting>
<b:widget-setting name='showBacklinks'>true</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'>true</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'></head>-->
<meta charset='UTF-8'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<b:if cond='data:view.isHomepage'>
<title><data:view.title.escaped/></title>
<b:elseif cond='data:view.isPost or data:view.isPage'/>
<title><b:eval expr='data:blog.metaDescription ? data:blog.metaDescription.escaped : data:blog.pageName.escaped'/></title>
<b:elseif cond='data:view.search.label'/>
<title><data:messages.labels/> <data:blog.pageName.escaped/></title>
<b:elseif cond='data:view.search.query'/>
<title><data:blog.pageName.escaped/></title>
<b:elseif cond='data:view.search and !data:view.search.label and !data:view.search.query'/>
<title><data:blog.title.escaped/></title>
<b:elseif cond='data:view.isArchive'/>
<title><data:messages.archive/> <data:blog.pageName/></title>
<b:elseif cond='data:view.isError'/>
<title>404 Not Found</title>
</b:if>
<b:if cond='data:view.isSingleItem'>
<b:loop index='x' values='data:posts limit 1' var='post'>
<meta expr:content='data:post.snippets.long.escaped snippet { length: 147, links: false, linebreaks: false, ellipsis: false }' name='description'/>
</b:loop>
<b:else/>
<b:if cond='data:view.isHomepage'>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' name='description'/>
<b:else/>
<meta expr:content='data:blog.pageName.escaped' name='description'/>
</b:if>
<b:else/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' name='description'/>
<b:else/>
<meta expr:content='data:blog.pageName.escaped' name='description'/>
</b:if>
</b:if>
</b:if>
<link expr:href='data:blog.url.canonical' rel='canonical'/>
<b:if cond='data:view.featuredImage'>
<meta expr:content='resizeImage(data:view.featuredImage, 640)' itemprop='image'/>
</b:if>
<meta expr:content='data:blog.url' property='og:url'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta content='en_US' property='og:locale'/>
<b:if cond='data:view.isMultipleItems'>
<meta content='website' property='og:type'/>
<meta expr:content='data:blog.title.escaped' property='og:title'/>
<b:elseif cond='data:view.isSingleItem'/>
<meta content='article' property='og:type'/>
<meta expr:content='data:blog.metaDescription ? data:blog.metaDescription.escaped : data:blog.pageName.escaped' property='og:title'/>
</b:if>
<b:if cond='data:view.isSingleItem'>
<b:loop index='x' values='data:posts limit 1' var='post'>
<meta expr:content='data:post.snippets.long.escaped snippet { length: 147, links: false, linebreaks: false, ellipsis: false }' property='og:description'/>
</b:loop>
<b:else/>
<b:if cond='data:view.isHomepage'>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' name='og:description'/>
<b:else/>
<meta expr:content='data:blog.pageName.escaped' name='og:description'/>
</b:if>
<b:else/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' name='og:description'/>
<b:else/>
<meta expr:content='data:blog.pageName.escaped' name='og:description'/>
</b:if>
</b:if>
</b:if>
<b:if cond='data:view.featuredImage'>
<meta expr:content='resizeImage(data:view.featuredImage, 640)' property='og:image'/>
<meta expr:content='resizeImage(data:view.featuredImage, 640)' property='og:image:secure_url'/>
<meta content='640' property='og:image:width'/>
<meta content='480' property='og:image:height'/>
<meta expr:content='data:blog.metaDescription ? data:blog.metaDescription.escaped : data:blog.pageName.escaped' property='og:image:alt'/>
</b:if>
<meta content='summary' name='twitter:card'/>
<b:if cond='data:view.isMultipleItems'>
<meta expr:content='data:blog.title.escaped' name='twitter:title'/>
<b:elseif cond='data:view.isSingleItem'/>
<meta expr:content='data:blog.metaDescription ? data:blog.metaDescription.escaped : data:blog.pageName.escaped' name='twitter:title'/>
</b:if>
<b:if cond='data:view.isSingleItem'>
<b:loop index='x' values='data:posts limit 1' var='post'>
<meta expr:content='data:post.snippets.long.escaped snippet { length: 147, links: false, linebreaks: false, ellipsis: false }' name='twitter:description'/>
</b:loop>
<b:else/>
<b:if cond='data:view.isHomepage'>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' name='twitter:description'/>
<b:else/>
<meta expr:content='data:blog.pageName.escaped' name='twitter:description'/>
</b:if>
<b:else/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' name='twitter:description'/>
<b:else/>
<meta expr:content='data:blog.pageName.escaped' name='twitter:description'/>
</b:if>
</b:if>
</b:if>
<b:if cond='data:view.featuredImage'>
<meta expr:content='resizeImage(data:view.featuredImage, 640)' property='twitter:image'/>
</b:if>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default?alt=rss"' expr:title='data:blog.title + " » Feed"' rel='alternate' type='application/rss+xml'/>
<link expr:href='data:blog.homepageUrl + "/feeds/comments/default?alt=rss"' expr:title='data:blog.title + " » Comments Feed"' rel='alternate' type='application/rss+xml'/>
<link expr:href='data:blog.blogspotFaviconUrl' rel='icon' sizes='32x32'/>
<link expr:href='data:blog.blogspotFaviconUrl' rel='icon' sizes='192x192'/>
<link expr:href='data:blog.blogspotFaviconUrl' rel='apple-touch-icon-precomposed'/>
<meta expr:content='data:blog.blogspotFaviconUrl' name='msapplication-TileImage'/>
<meta expr:content='data:skin.vars.primary' name='theme-color'/>
<meta expr:content='data:skin.vars.primary' name='msapplication-navbutton-color'/>
<meta expr:content='data:skin.vars.primary' name='apple-mobile-web-app-status-bar-style'/>
<!--<head></b:includable>
<b:includable id='aboutPostAuthor'/>
<b:includable id='addComments'/>
<b:includable id='commentAuthorAvatar'/>
<b:includable id='commentDeleteIcon'/>
<b:includable id='commentForm'/>
<b:includable id='commentFormIframeSrc'/>
<b:includable id='commentItem'/>
<b:includable id='commentList'/>
<b:includable id='commentPicker'/>
<b:includable id='comments'/>
<b:includable id='commentsTitle'/>
<b:includable id='feedLinks'/>
<b:includable id='feedLinksBody'/>
<b:includable id='homePageLink'/>
<b:includable id='iframeComments'/>
<b:includable id='inlineAd'/>
<b:includable id='nextPageLink'/>
<b:includable id='post'/>
<b:includable id='postBody'/>
<b:includable id='postBodySnippet'/>
<b:includable id='postCommentsAndAd'/>
<b:includable id='postCommentsLink'/>
<b:includable id='postFooter'/>
<b:includable id='postFooterAuthorProfile'/>
<b:includable id='postHeader'/>
<b:includable id='postJumpLink'/>
<b:includable id='postMeta'/>
<b:includable id='postPagination'/>
<b:includable id='postTitle'/>
<b:includable id='previousPageLink'/>
<b:includable id='status-message'/>
<b:includable id='threadedCommentForm'/>
<b:includable id='threadedCommentJs'/>
<b:includable id='threadedComments'/>
</b:widget>
<b:widget id='LinkList1' locked='true' title='Meta [Edit Saja]' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='text-8'>article_author-publishher</b:widget-setting>
<b:widget-setting name='link-7'>https://1.bp.blogspot.com/-_dqvlEPVC-U/XWahX4OdshI/AAAAAAAAAZk/A5_cK7m2y48bwNhgLdujglPrgZvPSXrsACPcBGAYYCw/s1600/Kurteyki-Banner.png</b:widget-setting>
<b:widget-setting name='link-8'>https://www.facebook.com/fdciabdul/</b:widget-setting>
<b:widget-setting name='link-5'>+62 852 8081 5555</b:widget-setting>
<b:widget-setting name='link-6'>true</b:widget-setting>
<b:widget-setting name='link-3'>https://4.bp.blogspot.com/-G2VNu4ce3O0/XS9PzNRywZI/AAAAAAAAAPM/mtqg2rpSmt4tHTTx0p7SSHrvzKP06xIlwCK4BGAYYCw/s200/kurteyki-logo.png</b:widget-setting>
<b:widget-setting name='link-4'><![CDATA["https:/www.facebook.com/kurteyki/","https:/www.facebook.com/kurteyki/"]]></b:widget-setting>
<b:widget-setting name='text-1'>ldjson_Organization_name</b:widget-setting>
<b:widget-setting name='text-0'>FDCI NET PEDIA</b:widget-setting>
<b:widget-setting name='text-3'>ldjson_Organization_logo</b:widget-setting>
<b:widget-setting name='text-2'>ldjson_Organization_url</b:widget-setting>
<b:widget-setting name='text-5'>ldjson_Organization_telephone</b:widget-setting>
<b:widget-setting name='text-4'>ldjson_Organization_sameAs</b:widget-setting>
<b:widget-setting name='text-7'>default_image</b:widget-setting>
<b:widget-setting name='text-6'>ldjson_SearchAction</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-1'>Kurteyki</b:widget-setting>
<b:widget-setting name='link-2'>https://www.kurteyki.com</b:widget-setting>
<b:widget-setting name='link-0'>true</b:widget-setting>
</b:widget-settings>
<b:includable id='main'></head>-->
<b:loop values='data:links' var='link'>
<b:if cond='data:link.name == "ldjson_Organization"'>
<b:if cond='data:link.target'>
<script type='application/ld+json'>{"@context":"https://schema.org","@id":"<data:blog.homepageUrl/>#creator","@type":"Organization","name":"<b:loop values='data:links' var='link'><b:if cond='data:link.name == "ldjson_Organization_name"'><b:if cond='data:link.target'><data:link.target.escaped/></b:if></b:if></b:loop>","url":"<b:loop values='data:links' var='link'><b:if cond='data:link.name == "ldjson_Organization_url"'><b:if cond='data:link.target'><data:link.target.escaped/></b:if></b:if></b:loop>","logo":{"@type":"ImageObject","height":"60","url":"<b:loop values='data:links' var='link'><b:if cond='data:link.name == "ldjson_Organization_logo"'><b:if cond='data:link.target'><data:link.target.escaped/></b:if></b:if></b:loop>","width":"600"},"contactPoint":[{"@type":"ContactPoint","telephone":"<b:loop values='data:links' var='link'><b:if cond='data:link.name == "ldjson_Organization_telephone"'><b:if cond='data:link.target'><data:link.target.escaped/></b:if></b:if></b:loop>","contactOption":"None","contactType":"customer support"}],"sameAs":[<b:loop values='data:links' var='link'><b:if cond='data:link.name == "ldjson_Organization_sameAs"'><b:if cond='data:link.target'><data:link.target/></b:if></b:if></b:loop>]}</script>
</b:if>
</b:if>
<b:if cond='data:link.name == "ldjson_SearchAction" AND data:link.target'>
<script type='application/ld+json'>{"@context":"https://schema.org","@type":"WebSite","url":"<data:blog.homepageUrl.escaped/>","potentialAction":{"@type":"SearchAction","target":"<data:blog.homepageUrl.escaped/>search?q={search_term_string}","query-input":"required name=search_term_string"}}</script>
</b:if>
<b:if cond='data:link.name == "default_image" AND data:link.target'>
<b:if cond='!data:view.featuredImage'>
<meta expr:content='data:link.target' itemprop='image'/>
<meta expr:content='data:link.target' property='og:image'/>
<meta expr:content='data:link.target' property='og:image:secure_url'/>
<meta content='640' property='og:image:width'/>
<meta content='480' property='og:image:height'/>
<b:if cond='data:view.isMultipleItems'>
<meta expr:content='data:blog.metaDescription ? data:blog.metaDescription.escaped : data:blog.pageName.escaped' property='og:image:alt'/>
<b:elseif cond='data:view.isSingleItem'/>
<meta expr:content='data:blog.pageName' property='og:image:alt'/>
</b:if>
<meta expr:content='data:link.target' property='twitter:image'/>
</b:if>
</b:if>
<b:if cond='data:link.name == "article_author-publishher" AND data:link.target'>
<b:if cond='data:view.isSingleItem'>
<meta expr:content='data:link.target' property='article:author'/>
<meta expr:content='data:link.target' property='article:publisher'/>
</b:if>
</b:if>
</b:loop>
<!--<head>
</b:includable>
<b:includable id='content'/>
</b:widget>
</b:section> </head>-->
<style>
@font-face {font-display: swap; font-family: "PT Sans"; font-style: normal; font-weight: 400; src: local("PT Sans"), local("PTSans-Regular"), url(https://fonts.gstatic.com/s/ptsans/v10/jizaRExUiTo99u79D0-ExdGM.woff2) format("woff2") } @font-face {font-display: swap; font-family: "PT Sans"; font-style: normal; font-weight: 700; src: local("PT Sans Bold"), local("PTSans-Bold"), url(https://fonts.gstatic.com/s/ptsans/v10/jizfRExUiTo99u79B_mh0OOtLQ0Z.woff2) format("woff2") } @font-face {font-display: swap; font-family: Merriweather; font-style: normal; font-weight: 700; src: local("Merriweather Bold"), local("Merriweather-Bold"), url(https://fonts.gstatic.com/s/merriweather/v20/u-4n0qyriQwlOrhSvowK_l52xwNZVcf6lvg.woff2) format("woff2") }@import url('https://fonts.googleapis.com/css?family=PT+Serif&display=swap');
</style>
<link href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css' rel='stylesheet'/>
<link href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css' rel='stylesheet'/>
<link href="https://raw.githubusercontent.com/ccampbell/rainbow/master/themes/css/paraiso-dark.css" rel="stylesheet" type="text/css"></link>
<script src="https://raw.githubusercontent.com/ccampbell/rainbow/master/dist/rainbow.js"></script>
<script src="https://raw.githubusercontent.com/ccampbell/rainbow/master/src/language/python.js"></script>
<script src="https://raw.githubusercontent.com/ccampbell/rainbow/master/src/language/language/php.js"></script>
<script src="https://raw.githubusercontent.com/ccampbell/rainbow/master/src/language/language/javascript.js"></script>
<script src="https://raw.githubusercontent.com/ccampbell/rainbow/master/src/language/language/html.js"></script>
<b:skin version='1.0.0'><![CDATA[
/** Template Information **
* Description: Mediumish Blogger Version
* Version : 1.3
* Last Update : 17 September 2019
* Converter : https://www.kurteyki.com/
* Original Template : https://www.wowthemes.net/themes/mediumish-wordpress/
*********************************************/
/*
<Group description="Comments" selector=".comments-container"><Variable name="comment.container" description="comment.container" type="color" default="transparent" value="transparent"/><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="#4a85db" value="#4a85db"/><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="#4a85db" value="#4a85db"/><Variable name="comment.button.color.hover" description="comment.button.color.hover" type="color" default="#4a85db" value="#4a85db"/><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="#4a85db" value="#4a85db"/></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>
<Variable name="keycolor" description="Main Color" type="color" default="#006ce2" value="#006ce2"/>
<Group description="Master Color">
<Variable name="primary" description="primary" type="color" default="#006ce2" value="#006ce2"/>
</Group>
*/
/* ==========================================================================
LAYOUT CSS
========================================================================== */
body#layout #reset,body#layout #Blog3{display:none}
body#layout #ElementerSocialicon {width: 50%; float: left; }
body#layout #ElementerHeader {width: 39%; float: right; }
body#layout #menu-kategori{margin:0;padding:0}
body#layout .navarea,body#layout #ddc_dropregion_15, body#layout #Featured_Post_Grid{clear:both}
/* ==========================================================================
BLOGGER CSS
========================================================================== */
.separator {text-align:left!important;}
.separator a {margin:initial!important;}
.separator a img{margin: 1em 0;}
.separator:nth-child(1) a img{margin:initial;margin-bottom:1em}
.Navbar {display:none}
.comment-button,#addcomment,.comment-message,.comment-disable {background-color: $(primary); border-color: $(primary); color: rgba(255,255,255,1); border-radius: 3px; font-size: .9rem; margin-left: 0; font-weight: 600; text-transform: none; width: auto; box-shadow: none; padding: 7px 13px; } .comment-message {margin-bottom: 10px; margin-top: 10px; } .comment-replybox-single{margin-top: 20px; margin-left: 15px; }.comment-disable{display:none}
/* ==========================================================================
ADS CSS
========================================================================== */
.adspost{display:block;width:100%;margin:0 auto 15px;text-align:center;}
.adspost.bottom{margin:15px auto}
.adspost.center{margin:15px auto}
.adspost.feed{margin: 15px 0;width: auto;padding:0}
.adspost div,.adspost ins{margin:0 auto}
.ads-hr-r { width: 234px; height: 50px; }
.ads-kb-r { width: 250px; height: 250px; }
.adspost.margin-0{margin:0;}
@media(min-width: 500px) { .ads-hr-r { width: 468px; height: 60px; }.ads-kb-r { width: 300px; height: 250px; } }
@media(min-width: 800px) { .ads-hr-r { width: 730; height: 120px; }.ads-kb-r { width: 336px; height: 280px; } }
]]></b:skin>
<style type='text/css'>
body{overflow-x:hidden;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6,table{font-family:"PT Sans",Helvetica,Arial,sans-serif;font-weight:700}img{max-width:100%;height:auto}.mainheading{padding:1rem 0}.mainheading.onpage{padding:0}.margb-2{margin-bottom:2rem}.homecover{background-size:cover;padding:0;color:#fff;margin-bottom:2rem;margin-top:-1.5rem;background-image:url('https://lh3.googleusercontent.com/-R9T1QzTD0Zo/XR6G3t5LvDI/AAAAAAAAAIU/Az1gW4tu8iwUXAzhcoi8kD-e1VdeDuNhgCLcBGAs/w800-h400-p-k-no-nu/wallhaven-j8rr7q.jpg')}.homecover h1 span,.homecover .lead span{background:rgba(0,0,0,.6);padding:3px 20px 3px 20px;display:inline-block}a{color:<data:skin.vars.primary/>}.mediumnavigation{background:rgba(255,255,255,.97);box-shadow:0 2px 2px -2px rgba(0,0,0,.15);padding:10px;transition:top .5s ease-in-out;color:rgba(0,0,0,.5)}.admin-bar .mediumnavigation{margin-top:32px}.alignright{float:right;margin:0 0 1em 1em}.alignleft{float:left;margin:0 1em 1em 0}.aligncenter{display:block;margin-left:auto;margin-right:auto}figcaption{font-style:italic;font-size:16px;background:#fbfbfb;padding:10px;font-weight:700;line-height:1.2}figure{max-width:100%}.gallery{margin-bottom:1.5em}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}section{margin-bottom:10px}.section-title h2,.section-title h1{border-bottom:1px solid #eee;margin-bottom:25px;font-weight:700;font-size:1.4rem;margin-top:25px}.section-title span{border-bottom:1px solid #6f6f6f;display:inline-block;padding-bottom:20px;margin-bottom:-1px;text-transform:capitalize}.section-title span span{padding-bottom:0;border-bottom:0}.section-title a{color:#292b2c}.section-title a:hover{text-decoration: none}.navbar-nav{width:100%}.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover, .mediumnavigation .navbar-brand:hover, .mediumnavigation .navbar-brand:focus, .mediumnavigation a:hover, .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.open, .navbar-light .navbar-nav .open>.nav-link {color: inherit; opacity: 0.8; }@media (min-width:576px){.card-columns.listfeaturedtag{-webkit-column-count:2;-moz-column-count:2;column-count:2}}@media (min-width:992px){.navbar-toggleable-sm .navbar-nav .nav-link{padding-right:.7rem;padding-left:.7rem;text-transform:uppercase;font-size:.83rem;font-weight:500}}@media (min-width:768px){.dropdown-item{background:rgba(255,255,255,.97);border-left:1px solid rgba(97,95,95,.09);border-right:1px solid rgba(97,95,95,.09);border-bottom:1px solid rgba(97,95,95,.09);font-size:.83rem;font-weight:500}}.card-columns .card{margin-bottom:20px}.skipfirst .grid-item:first-child{display:none}.featured-posts.post{display:none}.featured-posts .widget{margin-bottom:30px}.featured-posts .widget.widget_mediumishcatwidget{margin-bottom:10px}.listfeaturedtag .wrapthumbnail{height:258px;flex:0 0 auto}.listfeaturedtag .card{border:1px solid rgba(0,0,0,.1);border-radius:2px;height:260px;padding-left:0;overflow:hidden;margin-bottom:15px}.listfeaturedtag .thumbnail{background-size:cover;height:100%;display:block;background-position:100% 100%!important;background-origin:border-box!important;border-top-left-radius:2px}.listfeaturedtag .nothumbimage{margin:0 15px;padding:0 30px 30px 30px}.listfeaturedtag .nothumbimage .wrapfooter{width:90%}.listfeaturedtag .card-block{padding-left:0}.listfeaturedtag h2.card-title,.listrecent h2.card-title{font-size:1.25rem;line-height:1.25}.listfeaturedtag h2.card-title a,.listrecent h2.card-title a{color:rgba(0,0,0,.8)}.listfeaturedtag h2.card-title a:hover,.listrecent h2.card-title a:hover{color:rgba(0,0,0,.6);text-decoration:none}.listfeaturedtag span.card-text,.listrecent span.card-text{color:#6f6f6f;font-size:.9rem;line-height:1.5;font-weight:400}.listfeaturedtag .wrapfooter{position:absolute;bottom:20px;font-size:12px;display:block;width:85%}.row.listrecent{margin-bottom:5px}.masonrygrid.row.listrecent{margin-right:-10px;margin-left:-10px}.listrecent .wrapfooter{font-size:13px;margin-top:30px;background:#fff}.card.post.highlighted .thumbimage{background-position:50% 50%;background-size:cover;height:260px}.card.post.authorpost .thumbimage{background-position:50% 50%;background-size:cover;height:180px}.card.post.height262 .thumbimage{background-position:50% 50%;background-size:cover;height:150px}.card.post.height262.index .thumbimage{height:100px;}.card.post{margin-bottom:20px}.font400{font-weight:400}@media (min-width:1024px){.highlighted{height:544px}.recent-posts .highlighted,.listrelated .highlighted{height:520px}.height262{height:300px}.height262.index{height:262px}.highlighted .metafooter,.height262 .metafooter{position:absolute;width:90%;bottom:20px;height:70px}}.author-thumb{width:40px;height:40px;float:left;margin-right:13px;border-radius:100%}.thumb img{width:100%;max-width:100%;height:auto}.post-top-meta{margin-bottom:2rem}h2.comments-title,h3.comment-reply-title{font-size:16px;color:rgba(0,0,0,.68)}h3.comment-reply-title{margin-bottom:15px}#comments .comment-content{font-family:Merriweather;color:rgba(0,0,0,.84)}p.comment-notes{display:none}.comment-respond{margin-top:2rem}.comment-form label{display:block}#comments .comment-metadata{font-size:14px;margin-bottom:15px}#comments .comment-metadata a{color:rgba(0,0,0,.54)}#comments .fn{font-size:15px;line-height:1.4;padding-left:10px;font-weight:600}#comments .xcard img{border-radius:50%}ol.comment-list{list-style:none;padding-left:0}ol.children{list-style:none;padding-left:15px}.comment-list li.comment,.comment-form textarea,.comment-form input{background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.04);border:1px solid rgba(0,0,0,.09);border-radius:3px;padding:20px;position:relative;margin-bottom:10px}.comment-form input.submit{background-color:<data:skin.vars.primary/>;border-color:<data:skin.vars.primary/>;color:rgba(255,255,255,1);border-radius:3px;font-size:.9rem;margin-left:0;font-weight:600;text-transform:none;width:auto;cursor:pointer;box-shadow:none;padding:7px 13px}.comment-form textarea,.comment-form input{padding:10px 10px;max-height:180px;width:100%;font-size:14px}#comments .reply{position:absolute;top:20px;right:20px;font-size:17px;padding:2px 8px}#comments .reply a{color:rgba(0,0,0,.5)}.comment-list li.comment.depth-1{margin-top:20px;margin-bottom:20px}.post-top-meta .author-thumb{width:72px;height:72px;text-align: center; margin: 0 auto; float: none; margin-bottom: 10px}.post-top-meta span{font-size:.9rem;color:#6f6f6f;display:inline-block}.post-top-meta .author-description{margin-bottom:5px;margin-top:5px;font-size:.95rem}.author-meta{flex:1 1 auto;white-space:nowrap!important;text-overflow:ellipsis!important;overflow:hidden!important}span.post-name,span.post-date,span.author-meta{display:inline-block}span.post-date,span.post-read,span.readingtime{color:rgba(0,0,0,.54)}span.post-name{text-transform:capitalize}span.post-read-more{align-items:center;display:inline-block;float:right;margin-top:12px}span.post-read-more a{color:#6f6f6f}span.post-name a,span.post-read-more a:hover{color:rgba(0,0,0,.8)}.dot:after{content:"\00B7";margin-left:3px;margin-right:3px}.mediumnavigation .form-control{font-size:.8rem;border-radius:30px;overflow:hidden;border:1px solid rgba(0,0,0,.04)}.mediumnavigation .form-inline{margin-left:15px}.mediumnavigation .form-inline .btn{margin-left:-50px;border:0;border-radius:30px;cursor:pointer}.mediumnavigation .form-inline .btn:hover,.mediumnavigation .form-inline .btn:active{background:transparent;color:green}.navbar{padding:.2rem 1rem}.mediumnavigation .navbar-brand{font-weight:700;font-size:1.6rem;margin-right:0}nav-border{border-top:1px solid #eee;margin-top:10px}.dropdown:hover .dropdown-menu{display:block}.mediumnavigation .dropdown-menu{border:0;margin:0;border-radius:0;line-height:30px;padding-top:13px;background:transparent}.dropdown-item.active,.dropdown-item:active,.dropdown-item:focus,a.dropdown-item:hover{background-color:#333;color:#fff}.mediumnavigation .nav-item,.dropdown-menu{font-size:.84rem;text-transform:uppercase}.mediumnavigation a:hover{text-decoration:none}.mediumnavigation .navbar-brand img{max-height:30px;margin-right:5px}.site-content{min-height:60vh;padding-top:43px;margin-top:73px;transition:all .4s}.carousel-excerpt{background:rgba(51,51,51,.38);padding:7% 5%;font-size:30px}.carousel-excerpt .fontlight{font-weight:400;font-size:18px;text-transform:none;margin-top:30px;display:block;line-height:1.6;opacity:.8}.carousel-item{max-height:85vh}.carousel-item a,.carousel-item img {width:100%}#main-slider,.forauthor{margin-top:-20px}.mainheading h1.posttitle,h1.entry-title{font-weight:700;margin-bottom:1rem}.search-form .screen-reader-text{display:none}.search-form .search-field{border:1px solid <data:skin.vars.primary/>;padding:7px;font-size:13px;border-top-left-radius:3px;border-bottom-left-radius:3px;background:transparent;width:180px}.search-form .search-submit{background:<data:skin.vars.primary/>;border:<data:skin.vars.primary/>;color:#fff;font-size:13px;padding:8px 15px;border-top-right-radius:3px;border-bottom-right-radius:3px;margin-left:-5px}.search-form.mobile{display:none}.nav-up .searcharea form.search-form{opacity:0;transition:all .9s}i.social{display:inline-block;text-align:center;margin:0 0 0 10px;font-size:15px}.jumbotron.fortags{border-radius:0;background-image:url('https://lh3.googleusercontent.com/-R9T1QzTD0Zo/XR6G3t5LvDI/AAAAAAAAAIU/Az1gW4tu8iwUXAzhcoi8kD-e1VdeDuNhgCLcBGAs/w800-h400-p-k-no-nu/wallhaven-j8rr7q.jpg');background-size:cover}.jumbotron.fortags a{padding:0 10px;background:rgba(34,34,34,.78);border-radius:30px;color:#fff;font-weight:400;text-transform:lowercase;font-size:.9rem!important;margin-top:3px;margin-bottom:3px;display:inline-block}@media (min-width:768px){.jumbotron.fortags{margin-bottom:-30px;padding:0;height:400px}.jumbotron.fortags .col-md-4{background:rgba(0,0,0,.75);color:#fff;height:400px;margin-left:0;padding-left:0;padding-top:15%}.jumbotron.fortags .col-md-4 h2{font-weight:300}.jumbotron.fortags .row{margin:0}}.footer{border-top:1px solid rgba(0,0,0,.05)!important;padding-top:15px;padding-bottom:12px;font-size:.8rem;color:#6f6f6f;margin-top:30px}.back-to-top{margin:0;position:fixed;bottom:80px;right:40px;width:40px;height:40px;line-height:40px;text-align:center;border-radius:50%;border:1px solid rgba(0,0,0,.18);z-index:100;display:none;text-decoration:none}.back-to-top i{font-size:20px;color:rgba(0,0,0,.3)}.link-dark{color:rgba(0,0,0,.8)}.article-post{font-family: "PT Serif",Georgia,serif; font-weight: 400; line-height: 1.8; color: #4d4d4d;}blockquote{border-left:4px solid <data:skin.vars.primary/>;padding:0 20px;font-style:italic;color:rgba(0,0,0,.5)}.article-post p,.article-post blockquote{margin:0 0 1.5rem 0}.featured-image{display:block;margin:0 auto;margin-bottom:1.5rem}.share{text-align:center;margin-top:20px}.share p{margin-bottom:10px;font-size:.95rem}.share{display:none}.share ul li{display:block;margin-bottom:5px}.share ul{padding-left:0;margin-left:0}.svgIcon{vertical-align:middle}.share,.share a{color:#6f6f6f;fill:#6f6f6f}.shareitnow li a{width:30px;height:30px;border:1px solid #d2d2d2;line-height:30px;text-align:center;display:inline-block;border-radius:50%;color:#a9a9a9;font-size:13px}.share-horizontal{border-top:1px solid #eee;border-bottom:1px solid #eee;padding-top:10px;margin-bottom:1.5rem}.share-horizontal ul{list-style:none;margin-bottom:.56rem}.share-horizontal ul li{display:inline-block;vertical-align:middle;margin-right:7px}.share-horizontal p{vertical-align:middle;float:left;margin-right:20px;margin-bottom:0}.graybg{background-color:#fafafa;padding:40px 0 46px;position:relative}.listrelated .card{box-shadow:0 1px 7px rgba(0,0,0,.05);border:0}.card{border-radius:4px}.card .img-thumb{border-top-right-radius:4px;border-top-left-radius:4px}ul.post-categories{list-style:none;padding-left:0;margin:2rem 0 2rem 0}ul.post-categories li{display:inline-block;font-size:.9rem}ul.post-categories li a{background:rgba(0,0,0,.05);color:rgba(0,0,0,.6);border-radius:3px;padding:5px 10px;display:inline-block;margin-bottom:5px}ul.post-categories li a:hover{background:rgba(0,0,0,.07);text-decoration:none}.post-top-meta .avatar{border-radius:50%}.margtop3rem{margin-top:3rem}.margbotneg100{margin-bottom:-100px}.pl-0{padding-left:0}.pr-0{padding-right:0}.prevnextlinks{border-top:1px solid #eee;border-bottom:1px solid #eee;margin-left:0;margin-right:0}.prevnextlinks a{font-weight:600}.prevnextlinks .rightborder{border-right:1px solid #eee}.prevnextlinks .thepostlink{padding:20px 0;font-size:17px;}.thepostlink div{white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}.sep{height:1px;width:20px;background:#6f6f6f;margin:0 auto;margin-bottom:1.2rem}.btn.follow{border-color:<data:skin.vars.primary/>;color:<data:skin.vars.primary/>;padding:3px 10px;text-align:center;border-radius:999em;font-size:.85rem;display:inline-block}.btn.subscribe{background-color:<data:skin.vars.primary/>;border-color:<data:skin.vars.primary/>;color:rgba(255,255,255,1);fill:rgba(255,255,255,1);border-radius:30px;font-size:.85rem;margin-left:10px;font-weight:600;text-transform:uppercase}.btn-simple{background-color:<data:skin.vars.primary/>;border-color:<data:skin.vars.primary/>;color:rgba(255,255,255,1);fill:rgba(255,255,255,1);border-radius:30px;font-size:.9rem;font-weight:600;text-transform:uppercase;margin-top:2rem;padding:10px 20px}.post-top-meta .btn.follow{margin-left:5px;margin-top:-4px}.alertbar{box-shadow:0 -3px 10px 0 rgba(0,0,0,.0785);position:fixed;bottom:0;left:0;background-color:#fff;width:100%;padding:14px 0;z-index:1;display:none}.alertbar form{display:inline-block}.alertbar .mc4wp-form-fields p{display:inline-block;margin-bottom:0}.alertbar input[type="email"]{font-size:.85rem;padding:3px 5px 3px 10px;border-top-left-radius:3px;border-bottom-left-radius:3px;border:1px solid #ddd;border-right:0;margin-right:-10px;height:34px;letter-spacing:.5px;margin-left:5px}.alertbar input[type="submit"]{background-color:<data:skin.vars.primary/>;border:1px solid <data:skin.vars.primary/>;color:rgba(255,255,255,1);fill:rgba(255,255,255,1);font-size:.85rem;border-radius:0;padding:4px 10px;border-top-right-radius:3px;border-bottom-right-radius:3px;font-weight:600;height:34px;letter-spacing:.5px}.alertbar p {margin:0;}.post.author .avatar{border-radius:50%;width:100px;margin-top:-70px;margin-bottom:20px;border:10px solid #fff}.profile-icons a{color:inherit}.homecover .authorpage{max-width:100%;margin:0 auto;background:rgba(35,29,29,.5);padding:3rem 2rem;color:#fff}.homecover .authorpage a,.homecover .authorpage .bull{color:rgba(255,255,255,.46)}table{border-collapse:collapse;width:100%;font-size:13px;margin-bottom:2rem}table td,table th{border:1px solid #ddd;padding:8px}table tr:nth-child(even){background-color:#f2f2f2}table tr:hover{background-color:#ddd}table th{padding-top:12px;padding-bottom:12px;text-align:left;background-color:<data:skin.vars.primary/>;color:#fff}table th a{color:#fff;border-bottom:1px dotted rgba(255,255,255,.3)}table th a:hover{text-decoration:none;color:#fff;border-bottom:1px solid #fff}dd{margin:0}dd::after{content:'\A';white-space:pre-line}dd:last-of-type::after{content:''}dd,dt{display:inline}dd,dt,.address{vertical-align:middle}dt{font-weight:bolder}dt::after{content:':'}.address{display:inline-block;white-space:pre}article h1,article h2,article h3,article h4,article h5,article h6{margin:1.5rem 0}.search-field::-webkit-input-placeholder{color:rgba(0,0,0,.4)}.search-field:-moz-placeholder{color:rgba(0,0,0,.4)}.search-field::-moz-placeholder{color:rgba(0,0,0,.4)}.search-field:-ms-input-placeholder{color:rgba(0,0,0,.4)}.search-field::-ms-input-placeholder{color:rgba(0,0,0,.4)}.form-control{font-size:14px}.wfs_post_submit .btn.btn-info{background:<data:skin.vars.primary/>;border:0;border-radius:3px;color:#fff;-webkit-appearance:none}.wfs_post_submit{text-align:left}.authorpage h1{font-weight:700;font-size:30px;text-transform:capitalize;color:#fff}.post-top-meta.authorpage .author-thumb{float:none;margin-right:0}.forauthor .author-thumb{border:5px solid #fff;width:90px;height:90px}.authorpage .author-description{font-size:1rem;color:rgba(0,0,0,.6)}.post-top-meta.authorpage .btn.follow{padding:7px 20px;margin-top:10px;margin-left:0;font-size:.9rem}.graybg.authorpage{border-top:1px solid #f0f0f0}.authorpostbox{width:760px;margin:0 auto;margin-bottom:1.5rem;max-width:100%}.card.authorpost{box-shadow:0 1px 4px rgba(0,0,0,.04);border:1px solid rgba(0,0,0,.09);margin-bottom:20px}.card.authorpost span.card-text{font-size:20px}.card.authorpost .muted{color:#6f6f6f}.listrecent .authorpost h2.card-title{font-size:1.45rem}.xcard{text-transform:capitalize}.authorpostbox .img-thumb{width:100%}.sociallinks{margin:1rem 0}.sociallinks a{background:#666;color:#fff;width:22px;height:22px;display:inline-block;text-align:center;line-height:22px;border-radius:50%;font-size:12px}.margtop2{margin-top:2rem}.grid-item{padding-left:10px;padding-right:10px}.wpcf7-form input,.wpcf7-form textarea,.wpcf7-form select{border:1px solid #eee;padding:10px}input[type="submit"]{background-color:<data:skin.vars.primary/>;border:1px solid <data:skin.vars.primary/>;display:inline-block;padding:5px 20px;border-radius:3px;color:#fff;cursor:pointer}.linkloadmore,.bottompagination span.navigation,.bottompagination .pagination{display:block;font-size:.93rem;padding:15px 0;text-align:center;margin-bottom:0;margin-top:20px;color:#292929;border-top:1px solid #ddd;border-radius:0}.bottompagination span.navigation a{color:#6f6f6f}.bottompagination span.navigation li,.bottompagination .pagination .page-numbers{display:inline-block;list-style:none;margin:0 2px;padding:0 20px;border-radius:2px;font-size:14px;position:relative;color:#6f6f6f}.bottompagination span.navigation li a.active,.bottompagination .pagination .page-numbers.current{color:#111;font-weight:700}.bottompagination span.navigation li a.active:after,.bottompagination .pagination .page-numbers.current:after{content:"";background-color:#111;height:1px;position:absolute;top:-17px;left:0;right:0}li.disabled{cursor:not-allowed}li.disabled a{pointer-events:none}.pointerup{margin-bottom:-36px;margin-left:49%;font-size:30px}.pointerup i.fa{color:#eaeaea}.bottompagination span.navigation i{display:inline-block}.morefromcategory{font-weight:400;font-size:15px;text-decoration:none;margin-top:10px;color:#6f6f6f}.morefromcategory:hover{text-decoration:none}img.fullimage{margin-left:calc(-50vw+50%);margin-right:calc(-50vw+50%);width:100vw;max-width:none}@media (min-width:1024px){.share{position:fixed;display:block}.share ul li{display:block}}@media (max-width:999px){.listfeaturedtag .wrapthumbnail,.listfeaturedtag .col-md-7{width:100%;max-width:100%;-webkit-box-flex:0;-webkit-flex:100%;-ms-flex:100%;flex:100%}.listfeaturedtag .wrapthumbnail{height:250px}.listfeaturedtag .card{height:auto}.listfeaturedtag .wrapfooter{position:relative;margin-top:30px}.listfeaturedtag .card-block{padding:20px}}@media (max-width:991px){.search-form .search-field{width:130px}span.post-read-more{display:none}.card.post .meta-footer-thumb{float:left}.card.post .author-meta{float:left}.listfeaturedtag .nothumbimage{padding:0}header .container{width:100%}}@media (max-width:767px){.bottompagination span.navigation li,.bottompagination .pagination .page-numbers{padding:0 10px}.carousel-excerpt .title{font-size:15px!important}button.navbar-toggler{background-color:#fff;border:none!important;outline:none}.post-top-meta{text-align:center}.post-top-meta .avatar{margin-bottom:15px}.share ul li{display:inline-block}.share{display:block !important}.featured-posts .card.post.highlighted{margin-bottom:20px}.searcharea,.customarea{display:none;text-align:center!important;margin:5px 0}.search-form.mobile{display:block}.logoarea{text-align:left!important}.btn-simple{margin-top:1rem;padding:5px 10px}.mediumnavigation{top:0 !important}.navbar-collapse{padding-top:20px}.navbar-collapse .nav-link{font-weight:600;font-size:14px;padding:10px 20px;border-left:1px solid rgba(97,95,95,.09);border-right:1px solid rgba(97,95,95,.09);border-bottom:1px solid rgba(97,95,95,.09)}.mediumnavigation .dropdown-menu{border:0;box-shadow:none;display:block;padding:0}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active{background-color:#333}.dropdown-item{border-left:1px solid rgba(97,95,95,.09);border-right:1px solid rgba(97,95,95,.09);border-bottom:1px solid rgba(97,95,95,.09)}.mediumnavigation{position:relative;min-height:auto}.site-content{margin-top:0!important;padding-top:15px}.site-content.homepage{margin-top:10px!important;padding-top:15px}#main-slider,.forauthor{margin-top:-15px}.prevnextlinks .thepostlink{padding:10px 0}.mainheading h1.posttitle,h1.entry-title{font-size:2rem}.carousel-excerpt{font-size:15px;padding:10% 10%;font-size:17px;letter-spacing:1px}.navbar-toggler-right{position:absolute;top:-43px;right:0}.mediumnavigation .navbar-brand{font-size:24px}.navbar-toggler{font-size:1.15rem}body{margin-bottom:0!important}.alertbar{display:block !important;box-shadow:none;position:relative}footer.footer .pull-left,footer.footer .pull-right{text-align:center;float:none}.alertbar form{margin-top:15px}.article-post{font-size:1rem!important}.admin-bar .mediumnavigation{margin-top:0}html{margin-top:0!important}}@media (min-width:400px) and (max-width:1024px){.container{width:95%;max-width:100%}}.mediumnavigation, .dropdown-menu, .dropdown-item {background-color: rgba(255, 255, 255, .97); } .mediumnavigation, .mediumnavigation a, .navbar-light .navbar-nav .nav-link {color: #6f6f6f; }
#article-post img{max-width:100%;height:auto;}
#article-post a.img,#article-post .separator a,#article-post td a {margin-left:0!important;}
@media (max-width: 767px){#article-post a.img,#article-post .separator a,#article-post td a {margin-left:0!important;margin-right:0!important;}}
.recent-posts #article-post>.separator:first-child a{margin-left:0!important;margin-right:0!important;}
.hidden {display:none !important}
.blog-logo,.socialicon{border:none !important;margin:0 !important}
iframe {max-width: 100%; }
.page-link-footer .titik:last-child{display:none}
#blog-pager{margin:0;padding:0;}
#blog-pager li.previous,#blog-pager li.next {padding:0;margin:0;}
#blog-pager .previous {float:left}
#blog-pager .next {float:right}
#breadcrumbs,.postinfo {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}#breadcrumbs.onpage{margin:0;font-size:12px}
#linkloadmore a,.linkloadmore .nopost{background-color: <data:skin.vars.primary/>; border-color: <data:skin.vars.primary/>; color: rgba(255,255,255,1); border-radius: 3px; font-size: .9rem; margin-left: 0; font-weight: 600; text-transform: none; width: auto; box-shadow: none; padding: 7px 13px;}
</style>
<noscript><style type='text/css'>
#HTML111,#HTML222,#HTML333,#HTML555,#HTML551 {display:none; }
.lazy {display:none}
</style></noscript>
<meta content='beb8b95ee193fcd861bbb2c12f1f1401' name='p:domain_verify'/>
<b:include cond='data:view.isHomepage' name='postbylabel.js'/>
<!--<head/>--></head>
<body>
<!-- Header
================================================== -->
<header class='navbar-light bg-white fixed-top mediumnavigation'>
<div class='container'>
<div class='row justify-content-center align-items-center brandrow'>
<b:section class='col-lg-4 col-md-4 col-xs-12 hidden-xs-down customarea' id='ElementerSocialicon' showaddelement='no'>
<b:widget id='LinkList2' locked='true' title='Navigation Social Media' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-3'>https://www.youtube.com</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='text-1'>twitter</b:widget-setting>
<b:widget-setting name='link-1'>https://twitter.com/</b:widget-setting>
<b:widget-setting name='text-0'>facebook</b:widget-setting>
<b:widget-setting name='link-2'>https://www.instagram.com/</b:widget-setting>
<b:widget-setting name='text-3'>youtube</b:widget-setting>
<b:widget-setting name='link-0'>https://facebook.com/</b:widget-setting>
<b:widget-setting name='text-2'>instagram</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<a class='btn follow' expr:href='"https://www.blogger.com/follow.g?view=FOLLOW&blogID="+ data:blog.blogId' expr:title='data:link.name' rel='noopener' target='_blank'>
<i class='fa fa-user'> <data:messages.subscribe/></i>
</a>
<b:loop index='x' values='data:links' var='link'>
<a class='socialicon' expr:href='data:link.target' expr:title='data:link.name' rel='noopener' target='_blank'>
<i expr:class='"social fa fa-" + data:link.name'/>
</a>
</b:loop>
</b:includable>
<b:includable id='content'/>
</b:widget>
</b:section>
<b:section class='col-lg-4 col-md-4 col-xs-12 text-center logoarea' id='ElementerHeader' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Abdul Muttaqin (Header)' type='Header' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'/>
<b:widget-setting name='displayHeight'>0</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='useImage'>false</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='imagePlacement'>BEHIND</b:widget-setting>
<b:widget-setting name='displayWidth'>0</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:if cond='data:image'>
<a class='blog-logo' expr:href='data:blog.homepageUrl' expr:title='data:title'>
<noscript>
<img expr:alt='data:title ? data:title : data:messages.image' expr:src='data:image' expr:title='data:title'/>
</noscript>
<img class='lazy' expr:alt='data:title ? data:title : data:messages.image' expr:data-src='data:image' expr:title='data:title' src='https://lh3.googleusercontent.com/-HlQjXKbAmUU/XVs4Ya7f4kI/AAAAAAAAAH8/w2AGBG8ZAPITkDXBkr1BwAxVszhTj786gCLcBGAs/s200/loaderheader.gif'/>
</a>
<b:if cond='!data:view.isSingleItem'>
<h1 class='hidden'><data:title/></h1>
</b:if>
<b:else/>
<b:if cond='data:title'>
<b:tag class='navbar-brand' cond='data:view.isSingleItem' name='div'>
<b:tag class='navbar-brand' cond='!data:view.isSingleItem' name='h1'>
<b:tag cond='!data:view.isHomepage' expr:href='data:blog.homepageUrl' expr:title='data:title' name='a'><data:title/></b:tag>
</b:tag>
</b:tag>
</b:if>
</b:if>
</b:includable>
<b:includable id='behindImageStyle'/>
<b:includable id='description'/>
<b:includable id='image'/>
<b:includable id='title'/>
</b:widget>
</b:section>
<div class='col-lg-4 col-md-4 mr-auto col-xs-12 text-right searcharea'>
<form class='search-form' expr:action='data:blog.searchUrl'>
<input class='search-field' expr:placeholder='data:messages.searchThisBlog' name='q' title='Search for:' type='text'/>
<input name='max-results' type='hidden' value='9'/>
<button class='search-submit' type='submit'> <i class='fa fa-search'/> </button>
</form>
</div>
</div>
<div class='navarea'>
<nav class='navbar navbar-toggleable-sm' itemscope='itemscope' itemtype='http://schema.org/SiteNavigationElement' role='navigation'>
<button aria-controls='bs4navbar' aria-expanded='false' aria-label='Toggle navigation' class='navbar-toggler navbar-toggler-right' data-target='#bs4navbar' data-toggle='collapse' type='button'>
<span class='navbar-toggler-icon'/>
</button>
<div class='collapse navbar-collapse' id='bs4navbar'>
<form class='search-form mobile' expr:action='data:blog.searchUrl' style=' position: relative; margin-bottom: 15px; '>
<input class='search-field' expr:placeholder='data:messages.searchThisBlog' name='q' style=' width: 100%; ' title='Search for:' type='text'/>
<input name='max-results' type='hidden' value='9'/>
<button class='search-submit' style=' position: absolute; top: 0; right: 0; ' type='submit'>
<i class='fa fa-search'/>
</button>
</form>
<ul class='navbar-nav justify-content-center' id='menu-kategori'>
<b:if cond='!data:view.isPreview'><!--</b:if>
<b:section class='navbar-nav col-md-12 justify-content-center' id='Elementer Navigasi' showaddelement='no'>
<b:widget id='PageList1' locked='false' title='Navigasi [PageList]' type='PageList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='pageListJson'><![CDATA[{'home': {'href': 'https://memory.kurteyki.com/', 'title': 'Beranda', 'position': 0}}]]></b:widget-setting>
<b:widget-setting name='homeTitle'>Beranda</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='!data:view.isPreview'>--></b:if>
<b:if cond='!data:view.isPreview'>
<b:if cond='data:links'>
<b:loop values='data:links' var='link'>
<li class='nav-item'>
<a class='nav-link' expr:href='data:link.href' expr:title='data:link.title' itemprop='url'><span itemprop='name'><data:link.title/></span></a>
</li>
</b:loop>
</b:if>
</b:if>
<b:if cond='!data:view.isPreview'><!--</b:if>
</b:includable>
<b:includable id='content'/>
<b:includable id='overflowButton'/>
<b:includable id='overflowablePageList'/>
<b:includable id='pageLink'/>
<b:includable id='pageList'/>
</b:widget>
<b:widget id='Label2' locked='false' title='Navigasi [Dropdown 1]' type='Label' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>ALPHA</b:widget-setting>
<b:widget-setting name='display'>LIST</b:widget-setting>
<b:widget-setting name='selectedLabelsList'/>
<b:widget-setting name='showType'>ALL</b:widget-setting>
<b:widget-setting name='showFreqNumbers'>true</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:if cond='!data:view.isPreview'>--></b:if>
<li class='nav-item dropdown'>
<a class='nav-link dropdown-toggle' expr:title='data:title' href='javascript:;'><data:title/></a>
<div class='dropdown-menu'>
<b:loop values='data:labels' var='label'>
<a class='dropdown-item' expr:href='data:label.url params{max-results : "9"}' expr:title='data:label.name' itemprop='url'><span itemprop='name'><data:label.name/></span></a>
</b:loop>
</div>
</li>
<b:if cond='!data:view.isPreview'><!--</b:if>
</b:includable>
<b:includable id='cloud'/>
<b:includable id='content'/>
<b:includable id='list'/>
</b:widget>
<b:widget id='Label3' locked='false' title='Kategori' type='Label' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>ALPHA</b:widget-setting>
<b:widget-setting name='display'>LIST</b:widget-setting>
<b:widget-setting name='selectedLabelsList'/>
<b:widget-setting name='showType'>ALL</b:widget-setting>
<b:widget-setting name='showFreqNumbers'>true</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:if cond='!data:view.isPreview'>--></b:if>
<li class='nav-item dropdown'>
<a class='nav-link dropdown-toggle' expr:title='data:title' href='javascript:;'><data:title/></a>
<div class='dropdown-menu'>
<b:loop values='data:labels' var='label'>
<a class='dropdown-item' expr:href='data:label.url params{max-results : "9"}' expr:title='data:label.name' itemprop='url'><span itemprop='name'><data:label.name/></span></a>
</b:loop>
</div>
</li>
<b:if cond='!data:view.isPreview'><!--</b:if>
</b:includable>
<b:includable id='cloud'/>
<b:includable id='content'/>
<b:includable id='list'/>
</b:widget>
<b:widget id='PageList2' locked='false' title='Pages' type='PageList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='pageListJson'>{}</b:widget-setting>
<b:widget-setting name='homeTitle'>Home</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='!data:view.isPreview'>--></b:if>
<b:if cond='data:links'>
<li class='nav-item dropdown'>
<a class='nav-link dropdown-toggle' expr:title='data:title' href='javascript:;'><data:title/></a>
<div class='dropdown-menu'>
<b:loop values='data:links' var='link'>
<a class='dropdown-item' expr:href='data:link.href' expr:title='data:link.title' itemprop='url'><span itemprop='name'><data:link.title/></span></a>
</b:loop>
</div>
</li>
</b:if>
<b:if cond='!data:view.isPreview'><!--</b:if>
</b:includable>
<b:includable id='content'/>
<b:includable id='overflowButton'/>
<b:includable id='overflowablePageList'/>
<b:includable id='pageLink'/>
<b:includable id='pageList'/>
</b:widget>
<b:widget id='PageList4' locked='false' title='Sistem' type='PageList' version='2' visible='false'>
<b:widget-settings>
<b:widget-setting name='pageListJson'>{}</b:widget-setting>
<b:widget-setting name='homeTitle'>Home</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='!data:view.isPreview'>--></b:if>
<b:if cond='data:links'>
<li class='nav-item dropdown'>
<a class='nav-link dropdown-toggle' expr:title='data:title' href='javascript:;'><data:title/></a>
<div class='dropdown-menu'>
<b:loop values='data:links' var='link'>
<a class='dropdown-item' expr:href='data:link.href' expr:title='data:link.title' itemprop='url'><span itemprop='name'><data:link.title/></span></a>
</b:loop>
</div>
</li>
</b:if>
<b:if cond='!data:view.isPreview'><!--</b:if>
</b:includable>
<b:includable id='content'/>
<b:includable id='overflowButton'/>
<b:includable id='overflowablePageList'/>
<b:includable id='pageLink'/>
<b:includable id='pageList'/>
</b:widget>
</b:section>
<b:if cond='!data:view.isPreview'>--></b:if>
</ul>
</div>
</nav>
</div>
</div>
</header>
<div class='site-content'>
<b:class cond='data:view.isHomepage' name='homepage'/>
<b:class cond='data:view.isSingleItem' name='post'/>
<b:if cond='data:view.isHomepage'>
<!-- Featured Post
================================================== -->
<section class='featured-posts'>
<b:section id='Elementer Featured Slide [Select One]' showaddelement='no'>
<b:widget id='FeaturedPost1' locked='true' title='FeaturedPost [Slide]' type='FeaturedPost' version='2' visible='false'>
<b:widget-settings>
<b:widget-setting name='showSnippet'>true</b:widget-setting>
<b:widget-setting name='showPostTitle'>true</b:widget-setting>
<b:widget-setting name='postId'>7192277977333585881</b:widget-setting>
<b:widget-setting name='showFirstImage'>true</b:widget-setting>
<b:widget-setting name='useMostRecentPost'>true</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<div class='container'>
<div class='carousel slide margb-2' data-ride='carousel' id='main-slider'>
<ol class='carousel-indicators'>
<b:loop index='y' values='data:posts' var='post'>
<li data-target='#main-slider' expr:data-slide-to='data:y+1'>
<b:class cond='data:y==0' name='active'/>
</li>
</b:loop>
</ol>
<div class='carousel-inner'>
<b:loop index='n' values='data:posts' var='post'>
<div class='carousel-item'>
<b:class cond='data:n==0' name='active'/>
<a expr:href='data:post.link ? data:post.link : data:post.url' expr:title='data:post.title ? data:post.title : data:messages.noTitle'>
<noscript>
<img class='d-block wp-post-image' expr:alt='data:post.title' expr:src='data:post.featuredImage ? resizeImage(data:post.featuredImage, 1400) : "https://lh3.googleusercontent.com/-jVmO_aPaG0k/XViP6n5PXxI/AAAAAAAAAX4/GskZfM6jfbowlfyJUwv7BLJmCWAJPzPUgCLcBGAs/s1400/noimage-kurteyki.jpg"' expr:title='data:post.title'/>
</noscript>
<img class='d-block wp-post-image' expr:alt='data:post.title' expr:data-src='data:post.featuredImage ? resizeImage(data:post.featuredImage, 1400) : "https://lh3.googleusercontent.com/-jVmO_aPaG0k/XViP6n5PXxI/AAAAAAAAAX4/GskZfM6jfbowlfyJUwv7BLJmCWAJPzPUgCLcBGAs/s1400/noimage-kurteyki.jpg"' expr:srcset='sourceSet(data:post.featuredImage, [1400,300,768,1024])' expr:title='data:post.title' src='https://lh3.googleusercontent.com/-KkxbOI9iUR4/XVs1Ha6nC-I/AAAAAAAAAHs/nTSbSJM9nhcQbTQp17FtUCYn0rQFcYRYgCLcBGAs/w1400/loaderpost.gif'/>
<div class='carousel-caption d-flex h-100 align-items-center justify-content-center'>
<h3 class='carousel-excerpt d-block'>
<span class='title d-block'>
<data:post.title/>
</span>
<span class='fontlight d-block hidden-md-down'>
<b:eval expr='data:post.snippets.long snippet { length: 150, links: false, linebreaks: false, ellipsis: true }'/>
</span>
<span class='btn btn-simple'><data:messages.readMore/></span>
</h3>
</div>
</a>
</div>
</b:loop>
</div>
<a aria-label='Prev' class='carousel-control-prev' data-slide='prev' href='#main-slider'> <span aria-hidden='true' class='carousel-control-prev-icon'/> </a> <a aria-label='Next' class='carousel-control-next' data-slide='next' href='#main-slider'> <span aria-hidden='true' class='carousel-control-next-icon'/> </a>
</div>
</div>
<div class='clearfix'/>
</b:includable>
</b:widget>
<b:widget id='PopularPosts2' locked='true' title='PopularPosts [Slide]' type='PopularPosts' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='numItemsToShow'>10</b:widget-setting>
<b:widget-setting name='showThumbnails'>true</b:widget-setting>
<b:widget-setting name='showSnippets'>true</b:widget-setting>
<b:widget-setting name='timeRange'>ALL_TIME</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<div class='container'>
<div class='carousel slide margb-2' data-ride='carousel' id='main-slider'>
<ol class='carousel-indicators'>
<b:loop index='y' values='data:posts' var='post'>
<li data-target='#main-slider' expr:data-slide-to='data:y+1'>
<b:class cond='data:y==0' name='active'/>
</li>
</b:loop>
</ol>
<div class='carousel-inner'>
<b:loop index='n' values='data:posts' var='post'>
<div class='carousel-item'>
<b:class cond='data:n==0' name='active'/>
<a expr:href='data:post.link ? data:post.link : data:post.url' expr:title='data:post.title ? data:post.title : data:messages.noTitle'>
<b:with value='data:post.featuredImage.isResizable ? resizeImage(data:post.featuredImage, 1400) : resizeImage("https://lh3.googleusercontent.com/-jVmO_aPaG0k/XViP6n5PXxI/AAAAAAAAAX4/GskZfM6jfbowlfyJUwv7BLJmCWAJPzPUgCLcBGAs/s1400/noimage-kurteyki.jpg", 1400, "2:1")' var='image'>
<noscript>
<img class='d-block wp-post-image' expr:alt='data:post.title' expr:src='data:image' expr:title='data:post.title' height='700' sizes='(max-width: 1400px) 100vw, 1400px' width='1400'/>
</noscript>
<img class='d-block wp-post-image lazy' expr:alt='data:post.title' expr:data-src='data:image' expr:title='data:post.title' height='700' sizes='(max-width: 1400px) 100vw, 1400px' src='https://lh3.googleusercontent.com/-KkxbOI9iUR4/XVs1Ha6nC-I/AAAAAAAAAHs/nTSbSJM9nhcQbTQp17FtUCYn0rQFcYRYgCLcBGAs/w1400/loaderpost.gif' width='1400'/>
</b:with>
<div class='carousel-caption d-flex h-100 align-items-center justify-content-center'>
<h3 class='carousel-excerpt d-block'>
<span class='title d-block'>
<data:post.title/>
</span>
<span class='fontlight d-block hidden-md-down'>
<b:eval expr='data:post.snippets.long snippet { length: 150, links: false, linebreaks: false, ellipsis: true }'/>
</span>
<span class='btn btn-simple'><data:messages.readMore/></span>
</h3>
</div>
</a>
</div>
</b:loop>
</div>
<a aria-label='Prev' class='carousel-control-prev' data-slide='prev' href='#main-slider'> <span aria-hidden='true' class='carousel-control-prev-icon'/> </a> <a aria-label='Next' class='carousel-control-next' data-slide='next' href='#main-slider'> <span aria-hidden='true' class='carousel-control-next-icon'/> </a>
</div>
</div>
<div class='clearfix'/>
</b:includable>
<b:includable id='snippetedPostByline'/>
<b:includable id='snippetedPosts'/>
</b:widget>
</b:section>
<b:section id='Elementer Featured_Post_Grid' showaddelement='no'>
<b:widget cond='!data:view.search.query and data:view.isMultipleItems and not data:view.isPreview' id='HTML616' locked='false' title='Iklan Atas Post Grid' type='HTML' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<script data-ad-client="ca-pub-7516005518159732" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<div class='container'>
<div class='col-sm-12 adspost feed'>
<data:content/>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='PopularPosts1' locked='false' title='Sering Dilihat' type='PopularPosts' version='2' visible='false'>
<b:widget-settings>
<b:widget-setting name='numItemsToShow'>4</b:widget-setting>
<b:widget-setting name='showThumbnails'>true</b:widget-setting>
<b:widget-setting name='showSnippets'>true</b:widget-setting>
<b:widget-setting name='timeRange'>ALL_TIME</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<div class='container'>
<div class='section-title'>
<h2><span><data:title/></span></h2>
</div>
<div class='card-columns listfeaturedtag'>
<b:loop values='data:posts' var='post'>
<div class='card'>
<div class='row'>
<div class='col-md-5 wrapthumbnail'>
<a expr:aria-label='data:post.title ? data:post.title : data:messages.noTitle' expr:href='data:post.link ? data:post.link : data:post.url' expr:title='data:post.title ? data:post.title : data:messages.noTitle'>
<noscript><img class='thumbimage' expr:href='data:post.link ? data:post.link : data:post.url' expr:src='data:post.featuredImage ? (resizeImage(data:post.featuredImage, 208)) : "https://lh3.googleusercontent.com/-jVmO_aPaG0k/XViP6n5PXxI/AAAAAAAAAX4/GskZfM6jfbowlfyJUwv7BLJmCWAJPzPUgCLcBGAs/s208/noimage-kurteyki.jpg"' expr:title='data:post.title ? data:post.title : data:messages.noTitle'/></noscript>
<div class='thumbnail lazy' expr:data-style='"background-image:url(" + (data:post.featuredImage ? (resizeImage(data:post.featuredImage, 208)) : "https://lh3.googleusercontent.com/-jVmO_aPaG0k/XViP6n5PXxI/AAAAAAAAAX4/GskZfM6jfbowlfyJUwv7BLJmCWAJPzPUgCLcBGAs/s208/noimage-kurteyki.jpg") + ")"' style='background-image:url(https://lh3.googleusercontent.com/-KkxbOI9iUR4/XVs1Ha6nC-I/AAAAAAAAAHs/nTSbSJM9nhcQbTQp17FtUCYn0rQFcYRYgCLcBGAs/h120/loaderpost.gif)'>
</div>
</a>
</div>
<div class='col-md-7'>
<div class='card-block'>
<h2 class='card-title'>
<a expr:href='data:post.link ? data:post.link : data:post.url' expr:title='data:post.title ? data:post.title : data:messages.noTitle'> <b:eval expr='data:post.title ? data:post.title : data:messages.noTitle'/> </a>
</h2>
<span class='card-text d-block'>
<b:eval expr='data:post.snippets.long snippet { length: 150, links: false, linebreaks: false, ellipsis: false }'/>
</span>
<div class='metafooter'>
<div class='wrapfooter'>
<span class='meta-footer-thumb'> <span>
<noscript>
<img class='author-thumb' expr:alt='data:post.author.name' expr:src='data:post.author.authorPhoto.image ? resizeImage(data:post.author.authorPhoto.image, 400) : "https://1.bp.blogspot.com/-zyYKW2FGZ6c/W-gra7JfQII/AAAAAAAAAtg/sKfqCnnZMicOXgj7eEgh4_2l5D4odfdKACLcBGAs/s320/user.png"' expr:title='data:post.author.name'/>
</noscript>
<img class='author-thumb lazy' expr:alt='data:post.author.name' expr:data-src='data:post.author.authorPhoto.image ? resizeImage(data:post.author.authorPhoto.image, 400) : "https://1.bp.blogspot.com/-zyYKW2FGZ6c/W-gra7JfQII/AAAAAAAAAtg/sKfqCnnZMicOXgj7eEgh4_2l5D4odfdKACLcBGAs/s320/user.png"' expr:title='data:post.author.name' src='https://lh3.googleusercontent.com/-KkxbOI9iUR4/XVs1Ha6nC-I/AAAAAAAAAHs/nTSbSJM9nhcQbTQp17FtUCYn0rQFcYRYgCLcBGAs/s50/loaderpost.gif'/>
</span> </span>
<span class='author-meta'>
<span class='post-name'><span><data:post.author.name/></span></span><br/>
<span class='post-date'><b:eval expr='format(data:post.lastUpdated, "d MMMM, YYYY ")'/></span>
</span>
<span class='post-read-more'><a expr:href='data:post.link ? data:post.link : data:post.url' expr:title='data:post.title ? data:post.title : data:messages.noTitle'><svg class='svgIcon-use' height='25' viewbox='0 0 25 25' width='25'><path d='M19 6c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v14.66h.012c.01.103.045.204.12.285a.5.5 0 0 0 .706.03L12.5 16.85l5.662 4.126a.508.508 0 0 0 .708-.03.5.5 0 0 0 .118-.285H19V6zm-6.838 9.97L7 19.636V6c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v13.637l-5.162-3.668a.49.49 0 0 0-.676 0z' fill-rule='evenodd'/></svg></a></span>
</div>
</div>
</div>
</div>
</div>
</div>
</b:loop>
</div>
</div>
</b:includable>
<b:includable id='snippetedPostByline'/>
<b:includable id='snippetedPosts'/>
</b:widget>
<b:widget cond='not data:view.isPreview' id='Label5' locked='false' title='Post By Label' type='Label' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>ALPHA</b:widget-setting>
<b:widget-setting name='display'>LIST</b:widget-setting>
<b:widget-setting name='selectedLabelsList'>Kokoro</b:widget-setting>
<b:widget-setting name='showType'>USER_SELECTED</b:widget-setting>
<b:widget-setting name='showFreqNumbers'>false</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:loop values='data:labels limit 1' var='label'>
<div class='container'>
<div class='section-title'>
<h2><span><data:title/></span></h2>
</div>
<div class='row listrecent'>
<script expr:src='"/feeds/posts/summary/-/" + data:label.name + "?orderby=updated&alt=json-in-script&callback=extractfeed&max-results=5"' type='text/javascript'/>
<script>postbylabel();</script>
</div>
</div>
</b:loop>
</b:includable>
<b:includable id='cloud'/>
<b:includable id='content'/>
<b:includable id='list'/>
</b:widget>
</b:section>
</section>
</b:if>
<section class='recent-posts'>
<b:section id='Elementer Blog' showaddelement='no'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='commentLabel'/>
<b:widget-setting name='showShareButtons'>true</b:widget-setting>
<b:widget-setting name='authorLabel'>Post By</b:widget-setting>
<b:widget-setting name='disableGooglePlusShare'>true</b:widget-setting>
<b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='timestampLabel'/>
<b:widget-setting name='reactionsLabel'/>
<b:widget-setting name='showAuthorProfile'>true</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>
<b:widget-setting name='postsPerAd'>1</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showDateHeader'>false</b:widget-setting>
<b:widget-setting name='style.textcolor'>#000000</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#008000</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#0000ff</b:widget-setting>
<b:widget-setting name='style.bgcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showLabels'>true</b:widget-setting>
<b:widget-setting name='postLabelsLabel'/>
<b:widget-setting name='showBacklinks'>true</b:widget-setting>
<b:widget-setting name='showInlineAds'>false</b:widget-setting>
<b:widget-setting name='showReactions'>true</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:include name='article.loop'/>
</b:includable>
<b:includable id='aboutPostAuthor'/>
<b:includable id='addComments'/>
<b:includable id='article.loop'>
<b:if cond='data:view.isMultipleItems'>
<b:include name='article.loop.index'/>
<b:else/>
<b:include name='article.loop.post'/>
</b:if>
</b:includable>
<b:includable id='article.loop.index'>
<div class='container'>
<div class='clearfix'/>
<div xmlns:v='http://rdf.data-vocabulary.org/#'>
<b:if cond='data:view.isMultipleItems and !data:view.search.label and !data:view.search.query and !data:view.isArchive'>
<b:if cond='data:view.isHomepage and data:posts'>
<div class='section-title'>
<h2><span><data:messages.latestPosts/></span></h2>
</div>
<b:else/>
<div class='section-title'>
<h2><span><data:messages.morePosts/></span></h2>
</div>
</b:if>
<b:if cond='data:view.isHomepage and data:posts.empty'>
<div class='jumbotron mb-2'>
<div class='row h-100'>
<div class='col-md-12 align-self-center text-center'>
<data:messages.theresNothingHere/>
</div>
</div>
</div>
</b:if>
<b:else/>
<b:if cond='data:view.search.label'>
<b:if cond='data:posts.size gte 1'>
<div class='section-title'>
<h2>
<span>
<span typeof='v:Breadcrumb'>
<a expr:href='data:blog.homepageUrl' expr:title='data:messages.home' property='v:title' rel='v:url'>
<span><data:messages.home/></span>
</a>
</span> »
<span typeof='v:Breadcrumb'>
<a expr:href='data:blog.homepageUrl + "search/label/"+ data:blog.pageName' expr:title='data:label.name' property='v:title' rel='v:url'>
<data:blog.pageName/>
</a>
</span>
</span>
</h2>
</div>
<b:else/>
<b:include name='redirect'/>
</b:if>
</b:if>
<b:if cond='data:view.search.query'>
<b:if cond='data:posts.size gte 1'>
<div class='section-title'><h2><span>
<data:blog.pageName/>
</span></h2></div>
<b:else/>
<div class='jumbotron mb-2'>
<div class='row h-100'>
<div class='col-md-12 align-self-center text-center'>
<data:view.search.resultsMessageHtml/> : <data:messages.noResultsFound/>
</div>
</div>
</div>
</b:if>
</b:if>
<b:if cond='data:view.isArchive'>
<b:if cond='data:posts.size gte 1'>
<div class='section-title'><h2><span>
<data:messages.archive/> <data:blog.pageName/>
</span></h2></div>
<b:else/>
<b:include name='redirect'/>
</b:if>
</b:if>
</b:if>
</div>
<div class='masonrygrid row listrecent'>
<b:loop index='x' values='data:posts' var='post'>
<div class='col-lg-4 col-md-4 col-sm-6 grid-item'>
<b:include name='article.ldjson'/>
<div class='card post highlighted'>
<noscript><img class='thumbimage' expr:href='data:post.link ? data:post.link : data:post.url' expr:src='data:post.featuredImage ? (resizeImage(data:post.featuredImage, 354)) : "https://lh3.googleusercontent.com/-jVmO_aPaG0k/XViP6n5PXxI/AAAAAAAAAX4/GskZfM6jfbowlfyJUwv7BLJmCWAJPzPUgCLcBGAs/s208/noimage-kurteyki.jpg"' expr:title='data:post.title ? data:post.title : data:messages.noTitle'/></noscript>
<a class='thumbimage lazy' expr:data-style='"background-image:url(" + (data:post.featuredImage ? (resizeImage(data:post.featuredImage, 354)) : "https://lh3.googleusercontent.com/-jVmO_aPaG0k/XViP6n5PXxI/AAAAAAAAAX4/GskZfM6jfbowlfyJUwv7BLJmCWAJPzPUgCLcBGAs/s208/noimage-kurteyki.jpg") + ")"' expr:href='data:post.link ? data:post.link : data:post.url' expr:title='data:post.title ? data:post.title : data:messages.noTitle' style='background-image:url(https://lh3.googleusercontent.com/-KkxbOI9iUR4/XVs1Ha6nC-I/AAAAAAAAAHs/nTSbSJM9nhcQbTQp17FtUCYn0rQFcYRYgCLcBGAs/h120/loaderpost.gif)'/>
<div class='card-block'>
<h2 class='card-title'><a expr:href='data:post.link ? data:post.link : data:post.url' expr:title='data:post.title ? data:post.title : data:messages.noTitle'><b:eval expr='data:post.title ? data:post.title : data:messages.noTitle'/></a></h2> <span class='card-text d-block'><b:eval expr='data:post.snippets.long snippet { length: 150, links: false, linebreaks: false, ellipsis: true }'/></span>
<div class='metafooter'>
<div class='wrapfooter'>
<span class='meta-footer-thumb'>
<span>
<noscript>
<img class='author-thumb' expr:alt='data:post.author.name' expr:src='data:post.author.authorPhoto.image ? resizeImage(data:post.author.authorPhoto.image, 400) : "https://1.bp.blogspot.com/-zyYKW2FGZ6c/W-gra7JfQII/AAAAAAAAAtg/sKfqCnnZMicOXgj7eEgh4_2l5D4odfdKACLcBGAs/s320/user.png"' expr:title='data:post.author.name'/>
</noscript>
<img class='author-thumb lazy' expr:alt='data:post.author.name' expr:data-src='data:post.author.authorPhoto.image ? resizeImage(data:post.author.authorPhoto.image, 400) : "https://1.bp.blogspot.com/-zyYKW2FGZ6c/W-gra7JfQII/AAAAAAAAAtg/sKfqCnnZMicOXgj7eEgh4_2l5D4odfdKACLcBGAs/s320/user.png"' expr:title='data:post.author.name' src='https://lh3.googleusercontent.com/-KkxbOI9iUR4/XVs1Ha6nC-I/AAAAAAAAAHs/nTSbSJM9nhcQbTQp17FtUCYn0rQFcYRYgCLcBGAs/s50/loaderpost.gif'/>
</span></span>
<span class='author-meta'>
<span class='post-name'><span><data:post.author.name/></span></span><br/>
<b:if cond='data:this.allBylineItems.timestamp'>
<span class='post-date'>
<b:eval expr='format(data:post.lastUpdated, "d MMM, YYYY")'/>
</span>
<b:if cond='data:post.allowComments'>
<span class='dot'/>
</b:if>
</b:if>
<span class='post-read'>
<b:include name='article.comments.link'/>
</span>
</span>
<span class='post-read-more'><a expr:href='data:post.link ? data:post.link : data:post.url' expr:title='data:post.title ? data:post.title : data:messages.noTitle'><svg class='svgIcon-use' height='25' viewbox='0 0 25 25' width='25'><path d='M19 6c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v14.66h.012c.01.103.045.204.12.285a.5.5 0 0 0 .706.03L12.5 16.85l5.662 4.126a.508.508 0 0 0 .708-.03.5.5 0 0 0 .118-.285H19V6zm-6.838 9.97L7 19.636V6c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v13.637l-5.162-3.668a.49.49 0 0 0-.676 0z' fill-rule='evenodd'/></svg></a></span>
</div>
</div>
</div>
</div>
</div>
<b:if cond='data:x==2'>
<div class='col-sm-12 grid-item' id='ads-feed-target'/>
</b:if>
<b:if cond='data:x==5'>
<div class='col-sm-12 grid-item' id='ads-feed-target2'/>
</b:if>
</b:loop>
</div>
<b:if cond='data:view.isHomepage or data:view.search and !data:view.search.label and !data:view.search.query'>
<div class='bottompagination'>
<span class='navigation'>
<ul id='blog-pager'>
<li class='previous'>
<b:if cond='data:newerPageUrl'>
« <b:tag class='blog-pager-newer-link' cond='data:newerPageUrl' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' expr:title='data:messages.newerPosts' name='a'><data:messages.newerPosts/></b:tag>
</b:if>
</li>
<li class='next'>
<b:if cond='data:olderPageUrl'>
<b:tag class='blog-pager-older-link' cond='data:olderPageUrl' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:messages.olderPosts' name='a'><data:messages.olderPosts/></b:tag> »
</b:if>
</li>
</ul>
</span>
</div>
<b:else/>
<b:if cond='data:olderPageUrl'>
<div class='linkloadmore'>
<div id='linkloadmore'>
<a expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_pagination-old"' expr:title='data:messages.olderPosts' itemprop='url'>
<span itemprop='name'>Load More</span>
</a>
</div>
</div>
</b:if>
</b:if>
</div>
</b:includable>
<b:includable id='article.loop.post'>
<b:loop values='data:posts' var='post'>
<div class='container'>
<div class='clearfix'/>
<div class='row'>
<div class='col-md-2'>
<b:if cond='data:view.isPost'>
<div class='share'>
<div class='sidebarapplause'/>
<p class='sharecolour'> <data:messages.share/></p>
<ul class='shareitnow'>
<li>
<a expr:href='"whatsapp://send?text=" + data:blog.url' target='_blank' title='Share to Whatsapp'>
<i class='fa fa-whatsapp'/>
</a>
</li>
<li>
<a expr:href='"https://twitter.com/share?url=" + data:post.url + "&text=" + data:post.title' target='_blank' title='Share to Twitter'> <i class='fa fa-twitter'/> </a>
</li>
<li>
<a expr:href='"https://www.facebook.com/sharer/sharer.php?u=" + data:blog.url' target='_blank' title='Share to Facebook'> <i class='fa fa-facebook'/> </a>
</li>
<li>
<a data-pin-config='beside' expr:href='"https://pinterest.com/pin/create/button/?url=" + data:post.url + "&media=" + data:post.featuredImage + "&description=" + data:post.title ' target='_blank' title='Share to Pinterest'> <i class='fa fa-pinterest'/> </a>
</li>
<li>
<a expr:href='"https://www.linkedin.com/sharing/share-offsite/?url=" + data:post.url + "&title=" + data:post.title + "&summary=" + data:post.snippets.long snippet { length: 150, links: false, linebreaks: false, ellipsis: true } ' target='_blank' title='Share to Linkedin'> <i class='fa fa-linkedin'/> </a>
</li>
<li>
<a data-notes='right' expr:href='"https://www.tumblr.com/share/link?url=" + data:post.url' target='_blank' title='Share to Tumblr'> <i class='fa fa-tumblr'/> </a>
</li>
</ul>
<div class='sep'/>
<div class='hidden-xs-down'>
<ul>