-
Notifications
You must be signed in to change notification settings - Fork 42
/
PROFILEvCard.xml
3128 lines (3024 loc) · 168 KB
/
PROFILEvCard.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:responsive='true' b:version='2' class='v2' expr:dir='data:blog.languageDirection'>
<head>
<meta charset='utf-8'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='blogger' name='generator'/>
<link expr:href='data:blog.url' hreflang='x-default' rel='alternate'/>
<link href='http://www.blogger.com/openid-server.g' rel='openid.server'/>
<link expr:href='data:blog.homepageUrl' rel='openid.delegate'/>
<link expr:href='data:blog.url' rel='canonical'/>
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<title><data:blog.pageName/> - <data:blog.title/></title>
</b:if></b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<title>Page Not Found - <data:blog.title/></title>
</b:if>
<b:if cond='data:blog.pageType == "archive"'>
<meta content='noindex' name='robots'/>
</b:if>
<b:if cond='data:blog.searchLabel'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:if cond='data:blog.isMobile'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:if cond='data:blog.pageType != "error_page"'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<script type='application/ld+json'>{ "@context": "http://schema.org", "@type": "WebSite", "url": "<data:blog.homepageUrl/>", "potentialAction": { "@type": "SearchAction", "target": "<data:blog.homepageUrl/>?q={search_term}", "query-input": "required name=search_term" } }</script>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<meta expr:content='data:blog.pageName + ", " + data:blog.pageTitle + ", " + data:blog.title' name='keywords'/>
</b:if></b:if>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='DESKRIPSI-BLOG' name='keywords'/></b:if>
<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'/>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:blog.postImageThumbnailUrl'>
<link expr:href='data:blog.postImageThumbnailUrl' rel='image_src'/>
</b:if></b:if>
<link expr:href='data:blog.url' hreflang='x-default' rel='alternate'/>
<link href='/favicon.ico' rel='icon' type='image/x-icon'/>
<meta content='CODE-VALIDATION-GOOGLE-WEBMASTER' name='google-site-verification'/>
<meta content='CODE-VALIDATION-BING-WEBMASTER' name='msvalidate.01'/>
<meta content='Indonesia' name='geo.placename'/>
<meta content='ADMIN-NAME' name='Author'/>
<meta content='general' name='rating'/>
<meta content='id' name='geo.country'/>
<!-- [ Social Media Meta Tag ] -->
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta content='article' property='og:type'/>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta expr:content='data:blog.title' property='og:title'/>
<meta content='website' property='og:type'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<b:else/>
<meta expr:content='"Please visit " + data:blog.pageTitle + " To read interesting posts."' property='og:description'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
</b:if>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<b:else/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postThumbnailUrl' property='og:image'/>
<b:else/>
<meta content='https://blogger.googleusercontent.com/img/a/AVvXsEgOCsELLNfSPjZ5LFgve5JMbFUiELWPQRU2GFPMQ1oXJDDPQA4fzXyIHsWe9sHO91NkyLB9zgOJ4zks5ab3vk_daNIyil6U8t7ru3PZq3G6KYg7qBYhJYph5gpR8nhUmJwYCYdKT2Nmy2TdgH3xmhWsCNYBs1iOD8PFYLFtHAmVkxuhHR04IkZWzebPfA' property='og:image'/>
</b:if>
</b:if>
<meta content='https://www.facebook.com/PROFIL-FACEBOOK' property='article:author'/>
<meta content='https://www.facebook.com/FAN-PAGE-FACEBOOK' property='article:publisher'/>
<meta content='CODE-APPLICATION-FACEBOOK' property='fb:app_id'/>
<meta content='CODE-ADMIN-FACEBOOK' property='fb:admins'/>
<meta content='en_US' property='og:locale'/>
<meta content='en_GB' property='og:locale:alternate'/>
<meta content='id_ID' property='og:locale:alternate'/>
<meta content='summary' name='twitter:card'/>
<meta expr:content='data:blog.pageTitle' name='twitter:title'/>
<meta content='USER-TWITTER' name='twitter:site'/>
<meta content='USER-TWITTER' name='twitter:creator'/>
<meta content='summary_large_image' name='twitter:card'/>
<meta content='9aad942df4a6593c5fc2d5ea862ca659' name='p:domain_verify'/>
<script type='text/javascript'>
//<![CDATA[
function mbtTOC() {var mbtTOC=i=headlength=gethead=0;
headlength = document.getElementById("post-toc").getElementsByTagName("h3").length;for (i = 0; i < headlength; i++)
{gethead = document.getElementById("post-toc").getElementsByTagName("h3")[i].textContent;document.getElementById("post-toc").getElementsByTagName("h3")[i].setAttribute("id", "point"+i);mbtTOC = "<li><a href='#point"+i+"'>"+gethead+"</a></li>";document.getElementById("mbtTOC").innerHTML += mbtTOC;}}function mbtToggle() {var mbt = document.getElementById('mbtTOC');if (mbt .style.display === 'none') {mbt .style.display = 'block';} else {mbt .style.display = 'none';}}
//]]>
</script>
<style type="text/css">
<!-- /*<b:skin><![CDATA[
#layout #header{float:left;overflow:hidden}
#header,#layout .abouts,#layout .personal-info{clear:both;overflow:hidden!important}
#layout .header-wrap{position:relative;width:1000px}
#layout #header{width:330px!important;padding:0}
#layout .main-wrapper{float:left;width:61%}
#layout .sidebar-wrapper{width:235px;float:right;word-wrap:break-word}
#layout .sidebar-wrapper{width:310px;float:left;word-wrap:break-word}
#layout .footer{float:left;width:207px!important;margin:10px}
#layout li,#layout ol,#layout ul{list-style:none}
#layout #postresume{float:left}
#layout #contactform{float:right}
#layout #postresume,#layout #contactform{width:44.7%}
<Group description="(Contempo, Soho, Emporio, Notable)">
<Variable name="body.background" description="Body Background" type="background" color="#dddfe2" default="#dddfe2 none repeat scroll top left" value="#dddfe2 none repeat scroll top left"/>
<Variable name="body.font" description="Font" type="font" default="normal 400 14px Raleway, Arial, sans-serif" value="normal 400 14px Arial,sans-serif"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="body.text.font" description="1" type="font" default="$(body.font)" value="normal 400 14px Raleway,Arial,sans-serif"/>
<Variable name="posts.background.color" description="2" type="color" default="#fff" value="#ffffff"/>
<Variable name="body.link.color" description="3" type="color" default="#fab702" value="#fab702"/>
<Variable name="body.link.visited.color" description="4" type="color" default="#fab702" value="#fab702"/>
<Variable name="body.link.hover.color" description="5" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="blog.title.font" description="6" type="font" default="$(body.text.font)" value="normal 400 14px Raleway, Arial, sans-serif"/>
<Variable name="blog.title.color" description="7" type="color" default="#fff" value="#ffffff"/>
<Variable name="header.icons.color" description="8" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.font" description="9" type="font" default="$(body.text.font)" value="normal 400 14px Raleway, Arial,sans-serif"/>
<Variable name="tabs.color" description="10" type="color" default="#ccc" value="#cccccc"/>
<Variable name="tabs.selected.color" description="11" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.background.color" description="12" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.color" description="13" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="tabs.overflow.selected.color" description="14" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.title.color" description="15" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.title.font" description="16" type="font" default="$(body.text.font)" value="normal 400 14px Raleway, Arial,sans-serif"/>
<Variable name="posts.text.font" description="17" type="font" default="$(body.text.font)" value="normal 400 14px Raleway, Arial,sans-serif"/>
<Variable name="posts.text.color" description="18" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.icons.color" description="19" type="color" default="$(body.text.color)" value="#6c6f74"/>
<Variable name="labels.background.color" description="20" type="color" default="#fab702" value="#fab702"/>
</Group>
/*Table Of Contents Styles*/
.mbtTOC{box-shadow:2px 0px 10px 4px silver;background-color:#f2f2f2;color:black;line-height:1.1em;margin:30px auto;padding:20px 30px 20px 10px;display: block;width:90%;border-radius:30px 0} .mbtTOC ol,.mbtTOC ul {margin:0;padding:0}
.mbtTOC ul {list-style:none}
.mbtTOC ol li,.mbtTOC ul li {padding:15px 0 0; margin:0 0 0 30px;font-size:15px}
.mbtTOC a{color:#0080ff;text-decoration:none}
.mbtTOC a:hover{text-decoration:underline}
.mbtTOC button{font-family:'Felipa',cursive;font-weight: 600;background:#f2f2f2;font-size:20px;position:relative;outline:none;cursor:pointer; border:none; color:black;padding:0 0 0 15px}
.mbtTOC button:after{font-family:FontAwesome; position:relative; left:10px; font-size:20px}
.toc_icon{padding-left:25px}
/*Table Of Contents Styles*/
*/]]></b:skin>
<style>
/*
+----------------------------------------------------------+
-----_-+-------------------------------------------+-_-----
----/o)| Project : Imam Uddin;imamuddinwp |(o\----
---/ / | Theme Name : PROFILEvCard v1..0 | \ \---
--( (_ | _ Author Name : ImAmUdDiN _ | _) )--
-((\ \)+-/o)-----------------------------------(o\-+(/ /))-
-(\\\ \_/ / \ \_/ ///)-
--\ / https://github.com/imamuddinwp \ /--
---\____/ | | \____/---
---| | +++++++++++++++++++++++++++++++++++++++ | |---
-----------------------------------------------------------
+----------------------------------------------------------+
*/
/* reset css*/
html{scroll-behavior:smooth}
a,abbr,acronym,address,applet,article,aside,audio,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;text-decoration:none}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
ol,ul{list-style:none}
blockquote,q{quotes:none}
blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}
table{border-collapse:collapse;border-spacing:0}
h1{font-size:2rem}
h2{font-size:1.8rem}
h3{font-size:1.6rem}
h4{font-size:1.3rem}
h5{font-size:1.1rem}
h6{font-size:.8rem}
h1,h2,h3,h4,h5,h6{margin:0 0 .6em;font-family:'Felipa', cursive}
body{background:#f6f9fc;color:#444;height:100%;font-weight:400;line-height:22px;text-decoration:none;margin:0;padding:0;font-family:Raleway,sans-serif}
.section,.widget,.widget ul{margin:0;padding:0 0 30px 0}
:focus{outline:0}
a img{border:0}
brc{color:#2d2d2d}
.CSS_LIGHTBOX{z-index:999999!important}
.separator a{clear:none!important;float:none!important;margin-left:0!important;margin-right:0!important}
.headerwrap{position:relative;height:70px;margin-top:3%;margin-right:10px;margin-left:10px}
#headerbox{float:left;overflow:hidden;z-index:999;margin:0;padding:0}
#headerbox-inner{margin:10px 0;padding:0}
.header h1,.header p{font-size:42px;color:#2d2d2d;margin:0;line-height:1.4em;font-family:Raleway,sans-serif}
.header h1 a,.header h1.title a:hover{color:#00bcd4;text-decoration:none}
#headerbox img{border:none;background:none;width:275px;height:100%;margin:0 auto}
#headerbox,.header .description{display:none}
#comments h4,.about h1,.header h1,.header p,.related-box h4,.resume .base .profile .info,.sidebar h2,.tabs li a{text-transform: capitalize}
#comments,.post ol,.related-wrap li,.sidebar ul{list-style:none}
#navbar-iframe,a.quickedit,#Attribution1{height:0;visibility:hidden;display:none}
a,a:link,a:visited{color:#00bcd4;text-decoration:none}
a:active,a:hover{color:#00bcd4;text-decoration:none}
.container{position:relative;max-width:900px;margin:0 auto}
.main-wrapper{width:640px;margin:0;float:left;word-wrap:break-word;overflow:hidden}
.clr{clear:both;float:none}
#content{width:100%;overflow:hidden;box-shadow:0 20px 150px #d6dee4;margin-bottom:7%;border-radius: 20px 0}
h3.main-heading{margin:0 2px 20px 0;border-bottom:1px solid #ebebeb;padding-bottom:14px;color:#333;line-height:16px;font-size:16px;font-weight:600;display:block;clear:both;position:relative}
h3.main-heading::after{content:'';width:40px;height:1px;position:absolute;left:0;bottom:-1px;background:#fdc750}
::selection{background:#00bcd4;color:#000;text-shadow:none}
::-moz-selection{background:#00bcd4;color:#000;text-shadow:none}
::-webkit-selection{background:#00bcd4;color:#000;text-shadow:none}
::-o-selection{background:#00bcd4;color:#000;text-shadow:none}
.contact-form-widget input.contact-form-email,.contact-form-widget input.contact-form-name{-moz-box-shadow:inset 0 5px 16px -13px #333;-webkit-box-shadow:inset 0 5px 16px -13px #333;box-shadow:inset 0 5px 16px -13px #333;background-color:#fdfdfd;border:1px solid #d9d9d9;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#666;font-size:12px;height:25px;outline:0;padding:6px 10px;resize:none;width:97%}
.contact-form-widget textarea{-moz-box-shadow:inset 0 5px 16px -13px #333;-webkit-box-shadow:inset 0 5px 16px -13px #333;box-shadow:inset 0 5px 16px -13px #333;background-color:#fdfdfd;border:1px solid #d9d9d9;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#666;outline:0;padding:6px 10px;resize:none;width:97%}
.contact-form-button{color:#fff;background-color:#00bcd4;padding:8px 15px;border:0;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;font-weight:500;cursor:pointer;font-size:15px;font-family:Raleway,sans-serif}
.mediatop{margin:0 auto;text-align:center;padding:0;position:absolute;right:0;top:8%}
a.iconx,.share_btn li a{display:inline-block;position:relative;margin:3px;line-height:28px;width:28px;height:28px;padding:5px;vertical-align:middle;text-align:center;color:#000;font-size:17px;-webkit-border-radius:20px 0;border-radius:20px 0;background-color:#00bcd4;box-shadow:0 7px 15px rgba(233,233,233,0.96),0 12px 28px rgb(243,246,250);font-weight:400}
.mediatop a.facebook,.share_btn li a.fb{color:#000;opacity:.8}
.mediatop a.facebook:hover,.mediatop a.pinterest:hover,.mediatop a.instagram:hover,.mediatop a.twitter:hover,.share_btn li a.fb:hover,.share_btn li a.tw:hover,.share_btn li a.wa:hover, .mediatop a.linkedin:hover, .mediatop a.github:hover{color:#fff;opacity:1}
.share_btn li a{margin:15px!important}
.share_btn li a.wa{color:#000}
.mediatop a.twitter,.share_btn li a.tw{color:#000;opacity:.8}
.mediatop a.pinterest{color:#000;opacity:.8}
.mediatop a.instagram{color:#000;opacity:.8}
#about{background:#00bcd4;overflow:hidden;height:300px}
.about{float:left;width:55%;padding:20px}
.about .photo-inner{float:left;width:180px;height:215px;padding:0}
.about .photo-inner img{max-width:100%;max-height:100%;border-radius:20px 0;filter: grayscale(90%) hue-rotate(154deg);-webkit-filter: grayscale(90%) hue-rotate(154deg);-moz-filter: grayscale(90%) hue-rotate(154deg);box-shadow: 11px 20px 17px 0px #0000006e}
.about h1{color:#2d2d2d;line-height:1;margin:0; font-family:Romanesco, cursive; text-transform: capitalize;font-size:80px}
.about h3{font-size:21px;margin:10px 0;color:#2d2d2d;line-height:18px}
.about p{font-size:16px;color:#2d2d2d;font-weight:400;line-height:20px}
.about p a{color:#2d2d2d}
.personal-info{float:right;width:35%;padding:20px;height:265px;display:block;background:#2d2d2d}
.tetx{float:right;width:60%}
.personal-info li{font-size:15px;margin-bottom:10px;overflow:hidden}
.personal-info li label{color:#f7f7f7;float:left;padding:0;font-weight:600;width:25%}
.personal-info li span{font-weight:300;color:#dadada}
.menu{height:120px;background-color:#fff;position:relative;width:100%}
.tabs{height:100%;width:100%;position:absolute;z-index:100}
.tabs li{float:left;height:120px;width:25%;text-align:center}
.tabs li a{padding-top:28px;display:inline-block;background-repeat:no-repeat;font-size:25px;color:#2d2d2d;text-align:center;font-family:'Felipa';text-transform: capitalize}
.tabs li.active{border-radius:20px 0;background:#2d2d2d}
.tabs li.active a{color:#00bcd4}
.tabs li.active a i{background:#00bcd4}
.tabs li a i{font-size:24px;speak:none;width:40px;border-radius:50px;height:40px;line-height:40px;padding:5px;margin:0 auto 5px;text-align:center;color:#fff;display:block;background:#2d2d2d}
#goomnav a,.recenthome{display:block;padding:0}
#gorecent{margin:0}
.recenthome{padding:10px;overflow:hidden;width:45%;float:left;margin:10px;box-shadow:2px 2px 10px 0 rgba(152,152,152,0.09)}
.recenthome .postimg{float:left;height:70px;margin-right:20px;width:70px}
.recenthome h2,.recenthome h2 a{text-decoration:none;font-size:14px;font-weight:500;margin:10px 0;color:#111;font-family:Raleway,sans-serif}
.recenthome .postimg img{height:100%;width:100%;border-radius:30px 0;border:1px solid #00bcd4}
.goload{background:url(https://1.bp.blogspot.com/-euw5f2lkimQ/XicLgqtWfvI/AAAAAAAAB-E/EC927oJ0gekn_w9VaKIg4YfA6CN3u0AegCLcBGAsYHQ/s1600/loader.gif) 50% 50% no-repeat;height:200px}
.post,.related-wrap{background:#fff;border:1px solid #ebebeb}
#goomnav{font-size:15px;text-align:center;margin:10px auto;width:10%;clear:both;display:block}
#goomnav a{color:#2d2d2d;font-size:26px;font-weight:400;padding-top:20px}
#goomnav span{padding:5px 10px}
#goomnav .next{float:right}
#goomnav .previous{float:left}
#blog-pager,#goomnav .home,.PopularPosts .item-snippet,.blog-pager,h2.date-header,span.post-author,.recenthome p{display:none}
#goomnav a:hover{color:#00bcd4}
#goomnav span.noactived{color:#d0d0cf;cursor:no-drop;padding-top:20px}
#related-posts{margin:20px 0}
.related-wrap{overflow:hidden;margin:10px;padding:20px;-webkit-box-shadow:0 0 6px -2px rgba(208,208,208,.47);-moz-box-shadow:0 0 6px -2px rgba(208,208,208,.47);box-shadow:0 0 6px -2px rgba(208,208,208,.47);position:relative}
.related-wrap li{padding:0;position:relative;overflow:hidden;float:left;display:inline-block;box-sizing:border-box}
.related-wrap li:before{content:'\f00c';font-family:"Font Awesome 5 Pro";float:left;padding-top:5px;margin-right:10px;color:#00bcd4;font-size:14px;vertical-align:middle}
.postmeta h3,.postmeta h3 a,.related-wrap h3{font-weight:400;font-family:Raleway,sans-serif}
.related-wrap h3{font-size:17px;line-height:1.5em;padding:5px 0;vertical-align:middle;margin:0;color:#2d2d2d;display:flex}
.related-wrap h3 a{color:#2d2d2d}
.recenthome h2 a:hover,.related-wrap h3 a:hover{color:#00bcd4}
.breadcrumbs,.breadcrumbs a{font-size:14px;background:#000;color:#ffc506; padding-left:5px; border-radius:8px 0}
.postmeta h3,.postmeta h3 a{font-size:13px;color:#2d2d2d}
.post{margin:10px;padding:20px;-webkit-box-shadow:0 0 6px -2px rgba(208,208,208,.47);-moz-box-shadow:0 0 6px -2px rgba(208,208,208,.47);box-shadow:0 0 6px -2px rgba(208,208,208,.47)}
.post h1,.post h2{font-size:170%;line-height:1.1em;color:#2d2d2d;margin:10px 0;padding:0}
.post h1 a,.post h1 a:visited,.post h1 strong,.post h2 a,.post h2 a:visited, .post h3, .post h2 strong{display:block;text-decoration:none;color:#2d2d2d;font-weight:600}
.post-body{margin:0;line-height:1.5em;font-size:17px}
.post-body blockquote{display:block;background:#fff6df;padding:25px 25px 25px 40px;margin:10px;position:relative;color:#666;font-size:15px;font-style:italic;border-left:2px solid #00bcd4;line-height:1.6em}
.post-body blockquote::before{content:"\f10d";font-size:16px;font-weight:700;color:#fab702;position:absolute;left:15px;top:25px}
.post img,.sidebar img{max-width:100%;width:auto;border:0;height:auto;padding-bottom:25px}
.post ol,.post ul{margin:15px 0 5px 20px;padding:0 0 0 5px}
.post ul li:before{content:'\f111';color:#fab702;margin-right:10px}
.post ol{counter-reset:my-awesome-counter;display:block;flex-wrap:wrap}
.post ol li{counter-increment:my-awesome-counter;margin-bottom:.5rem}
.post ol li::before{content:"0"counter(my-awesome-counter);font-weight:800;margin-right:.5rem;line-height:1;color:#fab702}
.post ul li:before,.post-body blockquote::before{font-family:"Font Awesome 5 Pro"}
#HTML1 .widget-content{padding:10px 10px 7px}
.share_btn{margin:20px auto 0;padding:0;text-align:center;display:block;overflow:hidden}
.share_btn ul{margin:0!important;padding:0!important;font-size:12px}
.share_btn ul li{display:inline-block;overflow:hidden;vertical-align:middle}
.resume{background:#efefef;color:#2d2d2d;margin:20px auto;box-shadow:10px 10px #dedede;position:relative;display:-webkit-box;display:flex}
.resume .base,.resume .func{box-sizing:border-box;float:left}
.resume .boxwidget{margin:30px 0 40px}
.resume .func>div{padding-bottom:10px}
.resume .base>div:last-of-type,.resume .func>div:last-of-type{padding-bottom:0}
.resume .base{width:30%;padding:30px 15px;background:#2d2d2d;color:#fff}
.resume .base .profile{background:#00bcd4;padding:30px 15px 40px;margin:-30px -15px 60px;position:relative;z-index:2}
.resume .base .profile::after{content:"";position:absolute;background:#ed8307;width:99.6%;height:30px;bottom:-20px;left:0;-webkit-transform:skewY(-5deg);transform:skewY(-5deg);z-index:-1}
.resume .base .profile .photo img{width:100%;border-radius:116px 0}
.resume .base .profile .photo{display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}
.resume .base .profile .fa-rocket{font-size:100px;text-align:center;margin:auto;color:#2d2d2d}
.resume .base .profile .info{text-align:center;color:#fff;line-height:1}
.resume .base .profile .info .name{margin-top:10px;margin-bottom:0;font-size:2.79em;color:#2d2d2d;text-transform: capitalize}
.resume .base .profile .info .job{margin-top:10px;margin-bottom:0;font-size:1.3em;color:#fff;text-transform: capitalize}
.resume .base .contact div a:hover,.resume .base .contact div:hover i{color:#fdd835}
.resume .base .contact div{line-height:24px}
.resume .base .contact div a:hover span::after{width:100%}
.resume .base .contact div i{color:#00bcd4;width:20px;height:20px;font-size:20px;text-align:center;margin-right:15px;-webkit-transition-duration:.3s;transition-duration:.3s}
.resume .base .contact div span{position:relative}
.resume .base .contact div span::after{content:"";position:absolute;background:#fdd835;height:1px;width:0;bottom:0;left:0;-webkit-transition-duration:.3s;transition-duration:.3s}
.resume .boxwidget .box{text-align:center;vertical-align:middle}
.resume .boxwidget .box a{display:inline-block;vertical-align:text-bottom}
.resume .boxwidget .box a:hover i{background:#fdd835;border-radius:5px;-webkit-transform:rotate(45deg) scale(.8);transform:rotate(45deg) scale(.8)}
.resume .boxwidget .box i,.resume .func h3 i{color:#2d2d2d;border-radius:20px 0;background:#00bcd4}
.resume .boxwidget .box a:hover i::before{-webkit-transform:rotate(-45deg) scale(1.5);transform:rotate(-45deg) scale(1.5)}
.resume .boxwidget .box i{display:inline-block;font-size:25px;width:45px;height:45px;line-height:45px;margin:0 5px 10px;-webkit-transition-duration:.3s;transition-duration:.3s}
.resume .boxwidget .box i::before{-webkit-transition-duration:.3s;transition-duration:.3s}
.resume .boxwidget .box i.fa::before{display:block}
.resume .func{width:100%;padding:15px}
.resume .func:hover>div{-webkit-transition-duration:.5s;transition-duration:.5s}
.resume .func:hover>div:hover h3 i{-webkit-transform:scale(1.25);transform:scale(1.25)}
.resume .func:hover>div:not(:hover){opacity:.5}
.resume .func h3{-webkit-transition-duration:.3s;transition-duration:.3s;margin-top:0}
.resume .func h3 i{width:42px;height:42px;font-size:20px;line-height:42px;text-align:center;vertical-align:middle;margin-right:8px;-webkit-transition-duration:.3s;transition-duration:.3s}
.resume .func .edu ul li:hover span,.resume .func .skills-prog ul li:hover,.resume .func .work ul li:hover span{color:#fdd835}
.resume .func .edu,.resume .func .work{float:left}
.resume .func .edu small,.resume .func .work small{display:block;opacity:.8;font-size:13px}
.resume .func .edu ul li,.resume .func .work ul li{position:relative;margin-left:15px;padding-left:25px;padding-bottom:15px}
.resume .func .edu ul li:hover::before,.resume .func .work ul li:hover::before{-webkit-animation:circle 1.2s infinite;animation:circle 1.2s infinite}
@-webkit-keyframes circle{from{box-shadow:0 0 0 0 #fdd835}
to{box-shadow:0 0 0 6px rgba(255,255,255,0)}}
@keyframes circle{from{box-shadow:0 0 0 0 #fdd835}
to{box-shadow:0 0 0 6px rgba(255,255,255,0)}}
.resume .func .edu ul li:first-of-type::before,.resume .func .work ul li:first-of-type::before{width:10px;height:10px;left:-2px}
.resume .func .edu ul li:last-of-type,.resume .func .work ul li:last-of-type{padding-bottom:3px}
.resume .func .edu ul li:last-of-type::after,.resume .func .work ul li:last-of-type::after{border-radius:1.5px}
.resume .func .edu ul li::after,.resume .func .edu ul li::before,.resume .func .work ul li::after,.resume .func .work ul li::before{content:"";display:block;position:absolute}
.resume .func .edu ul li::before,.resume .func .work ul li::before{width:7px;height:7px;border:3px solid #fff;background:#00bcd4;border-radius:50%;left:0;z-index:1}
.resume .func .edu ul li::after,.resume .func .work ul li::after{width:2px;height:100%;background:#fff;left:5px;top:0}
.resume .func .edu,.resume .func .work{width:43%;padding:15px}
.resume .func .edu ul li span,.resume .func .work ul li span{-webkit-transition-duration:.3s;transition-duration:.3s;font-size:15px;font-weight:500;line-height:0}
.resume .func .work{margin:0 2% 15px 0}
.resume .func .skills-prog{clear:both;padding:15px}
.resume .func .skills-prog ul{margin:25px 3px}
.resume .func .skills-prog ul li{margin-bottom:8px;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-transition-duration:.3s;transition-duration:.3s}
.resume .func .skills-prog ul li:hover .skills-bar .bar{background:#fdd835;box-shadow:0 0 0 1px #fdd835}
.resume .func .skills-prog ul li span{display:block;width:120px;font-size:14px;font-weight:500;text-transform:uppercase}
.resume .func .skills-prog ul li .skills-bar{background:#fff;height:2px;width:calc(100% - 120px);position:relative;border-radius:2px}
.active>.site-button,.site-button:active,.site-button:focus,.site-button:hover,a.site-button{background-color:#00bcd4}
.resume .func .skills-prog ul li .skills-bar .bar{position:absolute;top:-1px;height:4px;background:#00bcd4;box-shadow:0 0 0 #00bcd4;border-radius:5px}
.comments .comment-block,.sidebar .widget{-webkit-box-shadow:0 0 6px -2px rgba(208,208,208,.47);-moz-box-shadow:0 0 6px -2px rgba(208,208,208,.47)}
.resume .func .skills-soft{clear:both;padding:15px;margin:15px 0 0}
.resume .func .skills-soft ul{display:-webkit-box;display:flex;-webkit-box-pack:justify;justify-content:space-between;text-align:center}
.resume .func .skills-soft ul li{position:relative}
.resume .func .skills-soft ul li:hover svg .cbar{stroke:#fdd835;stroke-width:4px}
.resume .func .skills-soft ul li:hover small,.resume .func .skills-soft ul li:hover span{-webkit-transform:scale(1.2);transform:scale(1.2)}
.resume .func .skills-soft ul li svg{width:95%;fill:transparent;-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}
.resume .func .skills-soft ul li svg circle{stroke-width:1px;stroke:#fff}
.resume .func .skills-soft ul li svg .cbar{stroke-width:3px;stroke:#00bcd4;stroke-linecap:round}
.resume .func .skills-soft ul li small,.resume .func .skills-soft ul li span{position:absolute;display:block;width:100%;top:52%;-webkit-transition-duration:.3s;transition-duration:.3s}
.resume .func .skills-soft ul li span{top:40%;font-size:15px;font-weight:500}
.slist{color:#fff;margin-bottom:7px;display:flex;font-size:15px}
.slist i{margin-right:10px;float:left;color:#00bcd4;margin-top:5px}
.btn-effect{position:relative}
.btn-effect:after,.btn-effect:before{-webkit-transition:all .25s;transition:all .25s;border-style:solid;border-width:0;content:"";height:24px;position:absolute;width:24px}
.brand-box:hover{-webkit-transition:all .5s ease-out;-moz-transition:all .5s ease-out;-ms-transition:all .5s ease-out;-o-transition:all .5s ease-out}
.btn-effect:before{border-color:#00bcd4;border-left-width:2px;border-top-width:2px;left:-5px;top:-5px}
.btn-effect:after{border-bottom-width:2px;border-color:#fab702;border-right-width:2px;bottom:-5px;right:-5px}
.btn-effect:hover:after,.btn-effect:hover:before{height:100%;width:100%}
.site-button{padding:5px 10px;display:inline-block;font-size:15px;cursor:pointer;outline:0;font-weight:500;border-width:0;border-style:solid;border-color:transparent;margin-left:5px;text-decoration:none!important}
a.site-button{color:#2d2d2d}
.readbtn{margin-top:15px;margin-left:5px}
.site-button:hover{background-color:#ed8307}
.site-button.btn-effect:after,.site-button.btn-effect:before{border-color:#00bcd4}
.site-button:hover.btn-effect:after,.site-button:hover.btn-effect:before{border-color:#ed8307}
.content-box{overflow:hidden;display:block;padding:20px;background:#f9f9f9}
.personal-info table tbody{font-size:13px}
.personal-info table{width:100%}
.personal-info table td,.personal-info table th{padding:5px;color:#fff}
.personal-info table th{text-align:left;font-weight:700}
.content-boxx{background:#fff}
.contact_form_info{text-align:left}
#comments{clear:both;margin:10px;padding:0;position:relative}
#comments h4,.related-box h4{font-size:25px;line-height:1.2em;display:block;font-weight:600;margin:0;padding:15px 0 10px;border-bottom:1px solid rgba(0,0,0,.05);position:relative;color:#2d2d2d}
.related-box h4{margin:0 10px}
#comments h4:after,.related-box h4:after{content:"";position:absolute;bottom:-1px;left:0;width:60px;height:1px;background:#00bcd4}
#comments-block .avatar-image-container,.comments .comments-content .comment-thread:empty{display:none}
#comment-editor,.comment-thread .user{position:relative}
.comments-content{padding:0 0 15px}
#comments-block{margin:15px 0}
.comment-body{padding:15px 0;margin:0}
.comment-body p{margin:0}
.comment-footer{margin:0 0 30px}
h4#comment-post-message{display:none;margin:0}
.comments{clear:both;margin-top:10px;margin-bottom:0}
.comments .comments-content{font-size:14px;margin-bottom:30px}
.comments .comments-content .comment-thread ol{text-align:left;margin:13px 0;padding:0;list-style:none}
.comments .comment-block{position:relative;margin-left:55px;margin-right:3px;padding:15px;word-break:break-word;background:#fff;border:1px solid #ebebeb;box-shadow:0 0 6px -2px rgba(208,208,208,.47)}
.comments .comment-replies .comment-block{margin-right:55px;margin-left:3px;border-left:3px solid #00bcd4}
.comments .thread-expanded .thread-arrow{display:none!important}
.comments .comments-content .comment-replies{margin:10px 0 10px 55px}
.comments .comment-replybox-single{margin:20px 0}
.comments .comment-replybox-thread{margin:0}
.comments .comments-content .comment{margin-bottom:6px;padding:0}
.comments .comments-content .comment:first-child,.comments .comments-content .comment:last-child{padding:0;margin:0}
.comments .comments-content .inline-thread{margin:0}
.comments .comments-content .comment-header{font-size:14px;margin:0 0 5px}
.comments .comments-content .comment-content{margin:10px 0;text-align:left;line-height:1.4;font-size:15px}
.comments .comments-content .datetime{float:right}
.comments .comments-content .datetime a{color:#555}
.comments .comments-content .user{font-weight:700;font-style:normal}
.comments .comment .comment-actions a{display:inline-block;font-size:13px;line-height:15px;margin:4px 8px 0 0}
.comments .continue a{display:inline-block;font-size:13px;padding:.5em}
.comments .comment .comment-actions a:hover,.comments .continue a:hover{color:#dd4a45}
.deleted-comment{font-style:italic;opacity:.5}
.comments .comments-content .loadmore{cursor:pointer;margin-top:3em;max-height:3em}
.comments .comments-content .loadmore.loaded{max-height:0;opacity:0;overflow:hidden}
.comments .continue,.comments .thread-chrome.thread-collapsed{display:none}
.comments .thread-toggle{display:inline-block}
.comments .thread-toggle .thread-arrow{display:inline-block;height:6px;margin:.3em;overflow:visible;padding-right:4px;width:7px}
.comments .thread-collapsed .thread-arrow,.comments .thread-expanded .thread-arrow{width:24px;height:24px;vertical-align:middle;display:inline-block}
.comments .hidden{display:none}
.item-control a,.secondary-text a.comment-reply{color:#909090;text-align:center;padding:0!important;font-weight:400;text-decoration:none}
.comment-thread .user,.comment-thread .user a{font-size:13px;font-weight:700;padding:0;text-decoration:none}
.secondary-text a.comment-reply{color:#777}
.item-control a:hover,.secondary-text a:hover.comment-reply{color:#2d2d2d!important}
#comment-editor{width:100%!important;background:url(https://1.bp.blogspot.com/-kAp4OwqTq28/XhxAOb139ZI/AAAAAAAAB0o/F-S8gdjOSXwtilbEYncR5S7e2WQElHVYwCLcBGAsYHQ/s1600/loader.gif) 50% 25% no-repeat;max-height:310px!important;transition:all 1.3s ease-out}
.comment-thread .user a{color:#2d2d2d}
.comment-thread .user a:hover{color:inherit}
.comment-thread .datetime a{text-decoration:none;color:#909090;font-size:11px;font-weight:400}
.comment-thread .datetime a:hover{color:#2d2d2d}
.item-control{margin-left:0}
.thread-chrome a.comment-reply{margin-top:20px!important;display:block;text-align:center;border-radius:99em;background-color:#f4f4f4}
.thread-chrome a:hover.comment-reply{color:#999}
#comments .comments-content .icon.blog-author{width:18px;height:18px;line-height:18px;margin-left:5px;vertical-align:middle;margin-top:-5px;display:inline-block}
#comments .comments-content .icon.blog-author:before{content:"\f005";font-family:"Font Awesome 5 Pro";color:#fab702;font-size:11px;vertical-align:middle}
.comment .avatar-image-container{width:40px;height:40px;overflow:hidden;float:left;border-radius:99em}
#comments .comment-replies .comment-thread .comment .avatar-image-container img,.comment .avatar-image-container img{display:block;padding:0;margin:0 auto}
#comments .comment-replies .comment-thread .comment .avatar-image-container{width:35px;height:35px;max-width:35px;max-height:35px;float:right}
#comments .avatar-image-container img{width:40px;height:40px;max-width:40px;max-height:40px;background:url(https://1.bp.blogspot.com/-ITY2zUo6O8w/XhxBWisGHeI/AAAAAAAAB0w/a_379aQsD6E3RdyzR0zSSeZOBwX2L86pwCLcBGAsYHQ/s1600/no.jpg) center center no-repeat}
#comments .comment-replies .avatar-image-container img{width:35px;height:35px;max-width:35px;max-height:35px;background:url(https://1.bp.blogspot.com/-ITY2zUo6O8w/XhxBWisGHeI/AAAAAAAAB0w/a_379aQsD6E3RdyzR0zSSeZOBwX2L86pwCLcBGAsYHQ/s1600/no.jpg) center center no-repeat}
.threaded_comments_text{display:block;margin:20px 0}
.threaded_comments_text p{font-size:100%;line-height:inherit}
.sidebar-wrapper{position:sticky;width:260px;font-size:15px;float:right;top:0;word-wrap:break-word;overflow:hidden}
.sidebar h2{font-weight:600;font-size:25px;line-height:1.2em;display:block;margin:0;padding:15px 0 10px 15px;border-bottom:1px solid rgba(0,0,0,.05);position:relative;color:#2d2d2d;text-transform:capitalize;}
.sidebar h2:after{content:"";position:absolute;bottom:-1px;left:0;width:60px;height:1px;background:#00bcd4}
#footer,.sidebar .widget{background:#fff;border:1px solid #ebebeb}
.sidebar{color:#2d2d2d;line-height:1em;margin:5px 0}
.sidebar li{line-height:1.3em;margin:0;padding:5px 0 4px}
.sidebar .widget{margin:10px 10px 20px;padding:0;box-shadow:0 0 6px -2px rgba(208,208,208,.47)}
.sidebar .widget-content{margin:0 auto;padding:0 15px}
.sidebar a:link,.sidebar a:visited{color:#2d2d2d;text-decoration:none;font-weight:400}
.sidebar ul{margin:0;padding:5px 0}
.sidebar h2:first-letter,.related-box h4:first-letter,.post h1:first-letter,.post h2:first-letter,.post-body h2:first-letter,.post-body h3:first-letter,.post-body h4:first-letter,.post-body h5:first-letter,.post-body h5:first-letter{color:#00bcd4}
#footer{padding:15px;word-break:break-word;-webkit-box-shadow:0 0 6px -2px rgba(208,208,208,.47);-moz-box-shadow:0 0 6px -2px rgba(208,208,208,.47);box-shadow:0 0 6px -2px rgba(208,208,208,.47);margin:10px 10px 40px;text-align:center;overflow:hidden;font-size:16px;font-weight:500;font-family:'Felipa', cursive;}
.back-to-top{display:none;position:fixed;bottom:2em;right:10px;text-decoration:none;color:#4caf50;font-size:16px;padding:1em}.back-to-top:hover{text-decoration:none;color:rgba(207,72,94,.8)}
@media (prefers-reduced-motion:reduce){
html{scroll-behaviour: auto}}
@media screen and (max-width:900px){
.container {max-width:100%;}}
@media screen and (max-width: 800px){
#headerbox,.mediatop,.resume .boxwidget,.tetx{text-align:center}
#headerbox{float:none;margin:0 auto}
.headerwrap{height:140px}
.mediatop{margin:0 auto;padding:0;position:absolute;right:0;left:0;top:50%}
.main-wrapper{width:100%;margin:0 auto;float:none}
#about,.personal-info{height:auto}
.about .photo-inner{float:none;margin:0 auto 20px}
.about,.personal-info,.sidebar-wrapper{margin:0 auto}
.about{float:none;width:94%;overflow:hidden;padding:20px}
.personal-info,.resume .base,.resume .func,.tetx{width:100%;float:none}
.resume,.slist{display:block}
.resume .base .profile::after{display:none}
.slist i{float:none}
.resume .func .edu,.resume .func .work{width:96%;margin:0 auto;float:none}
.resume .func .skills-soft ul li svg{width:75%}
.resume .func .skills-soft ul li span{font-size:13px}
.recenthome {width:95%;}
.sidebar-wrapper{position:relative;width:100%;float:none}}
@media screen and (max-width:480px){#goomnav {width:20%;}.contact-form-widget input.contact-form-email, .contact-form-widget input.contact-form-name {width:95%;}.about {width:91%;}.comments .comments-content .comment-replies{margin-left:0}
.tabs li{float:left;display:block;overflow:hidden;width:50%}
.tabs li a{padding:15px 0}
.menu{height:auto;position:relative;overflow:hidden;display:block}
.tabs{position:relative}.recenthome {width:90%;}
.resume .func .skills-soft ul {display:block;}}
</style>
<b:if cond='data:view.isSearch'>
<style>
.headerwrap{margin-right:10px!important;margin-left:10px!important}
.sidebar-wrapper,.postmeta{display:none}
.main-wrapper{width:100%;margin:0}
</style>
</b:if>
<b:if cond='data:blog.pageType != "static_page" and data:blog.pageType != "item"'>
<style>
.headerwrap{margin-right:0;margin-left:0}
.post{padding:0;float:left;width:30.89%;height:250px}
.post h2{font-size:15px;line-height:1.4em;margin:10px;padding:0;font-weight:500;font-family:Raleway,sans-serif}
.thumb,.thumb img{width:100%;margin:0}
.thumb{height:160px;padding:0}
.thumb img{height:100%}
.sidebar-wrapper{display:none}
.post h2:first-letter,.post h3:first-letter{color:initial}
@media screen and (max-width:800px){.post,.thumb{height:auto}
.post{padding:0 0 20px;float:none;width:100%;margin:0 auto 20px}}
</style>
</b:if>
<script>
//<![CDATA[
function loadCSS(e,t,o){"use strict";var i=window.document.createElement("link"),s=t||window.document.getElementsByTagName("script")[0];i.rel="stylesheet",i.href=e,i.media="only x",s.parentNode.insertBefore(i,s),setTimeout(function(){i.media=o||"all"})}loadCSS("https://kit-pro.fontawesome.com/releases/v5.11.2/css/pro.min.css"),loadCSS("https://fonts.googleapis.com/css2?family=Felipa&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Romanesco&display=swap"),"undefined"==typeof jQuery&&document.write('<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"><\/script>');
//]]>
</script>
<b:if cond='data:view.isError'>
<style>
#error-profile{margin:10% auto 30px;padding:0;text-align:center;list-style:none!important}
#error-profile .errorhead{position:relative;color:#000;font-size:8rem;line-height:1.6em;margin:15px auto 0}
#error-profile h3{text-transform:uppercase;color:#00bcd4;font-size:50px;margin:0 auto;letter-spacing:10px}
#error-profile h2{color:#2d2d2d;line-height:1;font-size:30px}
#error-profile p{line-height:1.4em;font-size:18px;color:#2d2d2d;padding:0}
</style>
</b:if>
</head><!--<head/>-->
<body itemscope='itemscope' itemtype='http://schema.org/WebPage'>
<b:if cond='data:blog.pageType != "error_page"'>
<div class='container'>
<!-- header -->
<div class='headerwrap'>
<header>
<div id='headerbox'>
<b:section class='header' id='header' maxwidgets='1' showaddelement='yes'>
<b:widget id='Header1' locked='true' title='Test Blog (Header)' type='Header' version='1'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>https://1.bp.blogspot.com/-kNTk_Rzkmd0/YV5rTF1sfiI/AAAAAAAAAUY/1KtsguP3x_UvJvb8ulLQDN5ptCSJG1dGwCLcBGAsYHQ/s332/imam-uddin-imamuddinwp.png</b:widget-setting>
<b:widget-setting name='displayHeight'>77</b:widget-setting>
<b:widget-setting name='sectionWidth'>332</b:widget-setting>
<b:widget-setting name='useImage'>true</b:widget-setting>
<b:widget-setting name='shrinkToFit'>true</b:widget-setting>
<b:widget-setting name='imagePlacement'>REPLACE</b:widget-setting>
<b:widget-setting name='displayWidth'>332</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:useImage'>
<b:if cond='data:imagePlacement == "BEHIND"'>
<!--
Show image as background to text. You can't really calculate the width
reliably in JS because margins are not taken into account by any of
clientWidth, offsetWidth or scrollWidth, so we don't force a minimum
width if the user is using shrink to fit.
This results in a margin-width's worth of pixels being cropped. If the
user is not using shrink to fit then we expand the header.
-->
<b:if cond='data:mobile'>
<div id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<b:if cond='data:blog.pageType != "item"'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
<b:else/>
<p class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</p>
</b:if>
</div>
<b:include name='description'/>
</div>
<b:else/>
<div expr:style='"background-image: url(\"" + data:sourceUrl + "\"); " + "background-position: " + data:backgroundPositionStyleStr + "; " + data:widthStyleStr + "min-height: " + data:height + "_height: " + data:height + "background-repeat: no-repeat; "' id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<b:if cond='data:blog.pageType != "item"'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
<b:else/>
<p class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</p>
</b:if>
</div>
<b:include name='description'/>
</div>
</b:if>
<b:else/>
<!--Show the image only-->
<div id='header-inner'>
<a expr:href='data:blog.homepageUrl' style='display: block'>
<img expr:alt='data:title' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:title='data:title' style='display: block'/>
</a>
<!--Show the description-->
<b:if cond='data:imagePlacement == "BEFORE_DESCRIPTION"'>
<b:include name='description'/>
</b:if>
</div>
</b:if>
<b:else/>
<!--No header image -->
<div id='header-inner'>
<div class='titlewrapper'>
<b:if cond='data:blog.pageType != "item"'>
<h1 class='title'>
<b:include name='title'/>
</h1>
<b:else/>
<p class='title'>
<b:include name='title'/>
</p>
</b:if>
</div>
<b:include name='description'/>
</div>
</b:if>
</b:includable>
<b:includable id='behindImageStyle'>
<b:if cond='data:sourceUrl'>
<b:include cond='data:this.image' data='{ image: data:this.image, selector: ".header-widget" }' name='responsiveImageStyle'/>
<style type='text/css'>
.header-widget {
background-position: <data:blog.locale.languageAlignment/>;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</b:if>
</b:includable>
<b:includable id='description'>
<div class='descriptionwrapper'>
<p class='description'><span><data:description/></span></p>
</div>
</b:includable>
<b:includable id='image'>
<a class='header-image-wrapper' expr:href='data:blog.homepageUrl'>
<b:include data='{ image: data:image, altText: data:blog.title.escaped, originalWidth: data:width, originalHeight: data:height }' name='responsiveImage'/>
</a>
</b:includable>
<b:includable id='title'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<data:title/>
<b:else/>
<a expr:href='data:blog.homepageUrl' expr:title='data:title'><data:title/></a>
</b:if>
</b:includable>
</b:widget>
</b:section>
</div>
<div class='clr'/>
<!-- Social Icons -->
<div class='mediatop'>
<a class='linkedin iconx' href='https://www.linkedin.com/in/imamuddinwp' rel='nofollow' target='_blank' title='Stay Connected with Imam Uddin On LinkedIn'><i class='fab fa-linkedin'/></a>
<a class='facebook iconx' href='https://web.facebook.com/imamuddinwpbd' rel='nofollow' target='_blank' title='Stay Connected with Imam Uddin On Facebook'><i class='fab fa-facebook-square'/></a>
<a class='twitter iconx' href='https://twitter.com/imamuddinwp' rel='nofollow' target='_blank' title='Follow Imam Uddin On Twitter'><i class='fab fa-twitter'/></a>
<a class='github iconx' href='https://github.com/imamuddinwp' rel='nofollow' target='_blank' title='See respositories of Imam Uddin On GitHub'><i class='fab fa-github-alt'/></a>
<a class='instagram iconx' href='https://www.instagram.com/imamuddinwp' rel='nofollow' target='_blank' title='Stay Connected with Imam Uddin On Instagram'><i class='fab fa-instagram'/></a>
</div>
<!-- /Social Icons -->
</header>
<div class='clr'/>
</div>
<!-- /header -->
<b:if cond='data:view.isHomepage'>
<div id='content'>
<div id='about'>
<b:section class='abouts' id='abouts' preferred='yes'>
<b:widget id='HTML3' locked='false' title='Main Slider' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<div class='about'>
<div class='photo-inner'>
<img alt='imamuddinwp-imamuddin-seo-expert' src='https://blogger.googleusercontent.com/img/a/AVvXsEgNEQna8bEgEYd8doozxB6vQ41WIG70hRmReV1Um2DGW-OoBRAgFgX9V4GbLVQ9t4sBw6OSO01W0FmIRH6aUcGPvHj_BLeuMcPBDxQC8MO2fa7U-XaKhlyyMxSu_XcSw7P6aYZsqEQnvGhcHt21Zq8raZWT5rONbFUEtPRl45zu6uTYpO-xja3dNb091g'/>
</div>
<div class='tetx'>
<a href='/'><h1>Imam Uddin</h1></a>
<h3>Web Designer | SEO Expert</h3>
<p>Hey there; it's me! 🤠 <b><a href='https://www.google.com/search?q=imam+uddin+imamuddinwp' target='_blank'>Imam Uddin, <a href='https://imamuddinwp.wixsite.com/imamuddinwp' target='_blank'>imamuddinwp</a></a></b>; A passionate <b>Front-End Web Developer</b> & <b>SEO Expert</b>.<br />
Need to know more about me? Find me in google by '<b><a href='https://www.google.com/search?q=imamuddinwp' target='_blank'>imamuddinwp</a></b>' 🕵 box, and you will definitely see my online activities! 🙂</p>
</div>
</div>
<div class='personal-info'>
<table><tbody>
<tr><th>Name:</th><td><i class='fas fa-id-card'></i> <a href='https://www.google.com/search?q=imam+uddin+imamuddinwp' target='_blank'>Md. Imam Uddin</a></td></tr>
<tr><th>DOB:</th><td><i class='far fa-calendar-alt'></i> 01/01/1988</td></tr>
<tr><th>Address:</th><td><address> <i class='fas fa-at'></i> Alankar more Chittagong, 4000</address></td></tr>
<tr><th>Phone:</th><td><i class='fas fa-mobile-alt'></i> <a href='tel:+8801815682307' target='_blank'>+880 1815682307</a></td></tr>
<tr><th>Email:</th><td><i class='fas fa-envelope-open-text'></i> <a href='mailto:imamcu07@gmail.com' target='_blank'>imamcu07@gmail.com</a></td></tr>
<tr><th>Location:</th><td><i class='fas fa-map-marked-alt'></i> Google Map --> <a href='https://g.page/imam-uddin-imamuddinwp?share' target='_blank'>imamuddinwp</a></td></tr>
<tr><th>Website:</th><td><i class='fas fa-globe-europe'></i> <a href='https://imamuddinwp.com' target='_blank'>imamuddinwp.blogspot.com</a></td></tr>
<tr><th>Blog:</th><td><i class='fas fa-blog'></i> <a href='https://freelancing-geek.blogspot.com' target='_blank'>Freelancing Geek</a></td></tr>
</tbody></table>
</div>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
<nav class='menu'>
<ul class='tabs'>
<li class='tmenu'>
<a class='tab-profile' href='#about' title=''><i class='fas fa-id-card-alt'/>About Me</a>
</li>
<li class='tmenu'>
<a href='#resume' title=''><i class='fas fa-graduation-cap'/>Resume</a>
</li>
<li class='tmenu'>
<a href='#blog' title=''><i class='fas fa-blog'/>Blog</a>
</li>
<li class='tmenu'>
<a href='#contact' title=''><i class='fas fa-envelope'/>Contact Me</a>
</li>
</ul>
</nav>
<div id='resume'>
<div class='content-box'>
<b:section class='postresume' id='postresume' preferred='yes'>
<b:widget id='HTML2' locked='false' title='{ads}' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<div class="resume">
<div class="base">
<div class="profile">
<div class="photo">
<img alt='imamuddinwp-imam-uddin-seo-expert' src='https://blogger.googleusercontent.com/img/a/AVvXsEiHMRPk8zS8aTOu8y75a2cfkR-9L3bmTsdENMO-Oa0gVPYv7wLSCGhQ1gAcwzK1TLSf2qXzBZFjZ4pMTMzMhNJaZp4vsPG8PAhEp8vOBYD_gK7czJqijspF0ScEW9yxfBECf3bkFDZW43wRABqo4OhHssLQG5SO13kuRqwFFuBzGequk9_sjT4MPj7c6g'/>
</div>
<div class="info">
<h1 class="name">Imam Uddin</h1>
<h2 class="job">SEO Expert | Shopify Expert</h2>
</div>
</div>
<div class="boxwidget">
<h3>Contact Me</h3>
<div class="slist"><i class="fas fa-map-marker-alt"></i><a href='https://g.page/imam-uddin-imamuddinwp?share' target='_blank'>Chittagong, Bangladesh</a></div>
<div class="slist"><i class="fas fa-phone"></i> <a href='tel:+8801815682307' target='_blank'>+880 1815682307</a> </div>
<div class="slist"><i class="fab fa-whatsapp"></i> <a href='https://wa.me/message/74SQMAMDR65GG1' target='_blank'>+8801406070407</a></div>
<div class="slist"><i class="fas fa-globe"></i> <a href='https://imamuddinwp.blogspot.com' target='_blank'>imamuddinwp.blogspot.com</a> </div>
<div class="slist"><i class="fas fa-envelope"></i> <a href='mailto:imamcu07@gmail.com' target='_blank'>imamcu07@gmail.com</a></div>
</div>
<div class="boxwidget">
<h3>Follow Me</h3>
<div class="box">
<a href="https://www.linkedin.com/in/imamuddinwp" target="_blank"><i class="fab fa-linkedin "></i></a>
<a href="https://github.com/imamuddinwp" target="_blank"><i class="fab fa-github "></i></a>
<a href="https://codepen.io/imamuddinwp" target="_blank"><i class="fab fa-twitter "></i></a>
<a href="https://www.facebook.com/imamuddinwp" target="_blank"><i class="fab fa-facebook-square "></i></a>
<a href="https://www.instagram.com/imamuddinwp" target="_blank"><i class="fab fa-instagram "></i></a>
<a href="https://www.pinterest.com/imamuddinwp" target="_blank"><i class="fab fa-pinterest "></i></a>
<a href="https://bn.quora.com/profile/Imam-Uddin-Wp" target="_blank"><i class="fab fa-quora "></i></a>
<a href="https://www.youtube.com/c/ImamUddinimamuddinwp/" target="_blank"><i class="fab fa-youtube "></i></a>
<a href="https://www.behance.net/imamuddinwp" target="_blank"><i class="fab fa-behance "></i></a>
</div>
</div>
<div class="boxwidget">
<h3>Download Resume</h3>
<a href='https://drive.google.com/file/d/1SI6zFk0hyOxM8Syf_tll1yC7YjpnL_10/view?usp=sharing' target='_blank' class="site-button btn-effect">Resume as PDF format</a>
</div>
</div>
<div class="func">
<div class="work">
<h3><i class="fa fa-briefcase"></i>Experience</h3>
<ul>
<li><span>SEO Expert - Blogger </span><small>Freelancing Geek</small><small>Apr 2018- Now</small></li>
<li><span>Web Designer - SEO Expert</span><small>NextGen Digital</small><small>Jan 2020 - Apr 2021</small></li>
<li><span>Intern - Technical SEO Expert</span><small>Gorilla Digital</small><small>Mar 2021 - May 2021</small></li>
</ul>
</div>
<div class="edu">
<h3><i class="fa fa-graduation-cap"></i>Education</h3>
<ul>
<li><span>Diploma In Programming</span><small>IsDB-BISEW</small><small>Aug 2013 - Feb 2015</small></li>
<li><span>Digital Marketing</span><small>INSTRUCTORY.NET</small><small>Nov 2019 - Sep 2021</small></li>
<li><span>BSS(Hon's), MSS</span><small>University Of Chittagong</small><small>Feb 2007 - May 2011</small></li>
</ul>
</div>
<div class="skills-prog">
<h3><i class="fas fa-code"></i>Professional Skills</h3>
<ul>
<li data-percent="95"><span>CMS</span>
<div class="skills-bar">
<div class="bar"></div>
</div>
</li>
<li data-percent="90"><span>SEO & SMM </span>
<div class="skills-bar">
<div class="bar"></div>
</div>
</li>
<li data-percent="60"><span>Page Buider</span>
<div class="skills-bar">
<div class="bar"></div>
</div>
</li>
<li data-percent="50"><span>jQuery</span>
<div class="skills-bar">
<div class="bar"></div>
</div>
</li>
<li data-percent="40"><span>PHP</span>
<div class="skills-bar">
<div class="bar"></div>
</div>
</li>
<li data-percent="55"><span>MySql</span>
<div class="skills-bar">
<div class="bar"></div>
</div>
</li>
<li data-percent="40"><span>C#.NET</span>
<div class="skills-bar">
<div class="bar"></div>
</div>
</li>
</ul>
</div>
<div class="skills-soft">
<h3><i class="fas fa-bezier-curve"></i>Software Skills</h3>
<ul>
<li data-percent="90">
<svg viewbox="0 0 100 100">
<circle cx="50" cy="50" r="45"></circle>
<circle class="cbar" cx="50" cy="50" r="45"></circle>
</svg><span>VS Code</span><small></small>
</li>
<li data-percent="75">
<svg viewbox="0 0 100 100">
<circle cx="50" cy="50" r="45"></circle>
<circle class="cbar" cx="50" cy="50" r="45"></circle>
</svg><span>Notepad++</span><small></small>
</li>
<li data-percent="85">
<svg viewbox="0 0 100 100">
<circle cx="50" cy="50" r="45"></circle>
<circle class="cbar" cx="50" cy="50" r="45"></circle>
</svg><span>Canva</span><small></small>
</li>
<li data-percent="65">
<svg viewbox="0 0 100 100">
<circle cx="50" cy="50" r="45"></circle>
<circle class="cbar" cx="50" cy="50" r="45"></circle>
</svg><span>Photoshop</span><small></small>
</li>
</ul>
</div>
</div>
</div>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
<div id='blog'>
<div class='content-box content-boxx'>
<!-- recent -->
<div id='gorecent'/><div id='goomnav'/>
<!-- /recent -->
</div>
</div>
<div id='contact'>
<div class='content-box'>
<b:section class='contactform' id='contactform' preferred='yes'>
<b:widget id='ContactForm1' locked='false' title='Write To Me' type='ContactForm' version='1'>
<b:includable id='main'>
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='contact-form-widget'>
<div class='form'>
<form name='contact-form'>
<p/>
<data:contactFormNameMsg/>
<br/>
<input class='contact-form-name' expr:id='data:widget.instanceId + "_contact-form-name"' name='name' size='30' type='text' value=''/>
<p/>
<data:contactFormEmailMsg/> <span>*</span>
<br/>
<input class='contact-form-email' expr:id='data:widget.instanceId + "_contact-form-email"' name='email' size='30' type='text' value=''/>
<p/>
<data:contactFormMessageMsg/> <span>*</span>
<br/>
<textarea class='contact-form-email-message' cols='25' expr:id='data:widget.instanceId + "_contact-form-email-message"' name='email-message' rows='5'/>
<p/>
<input class='contact-form-button contact-form-button-submit' expr:id='data:widget.instanceId + "_contact-form-submit"' expr:value='data:contactFormSendMsg' type='button'/>
<p/>
<div>
<p class='contact-form-error-message' expr:id='data:widget.instanceId + "_contact-form-error-message"'/>
<p class='contact-form-success-message' expr:id='data:widget.instanceId + "_contact-form-success-message"'/>
<a href='https://imamuddinwp.com/search' style='opacity: 0.01;'>imamuddinwp</a>
</div>
</form>
</div>
</div>
</b:includable>
<b:includable id='content'>
<div class='contact-form-widget'>
<div class='form'>
<form name='contact-form'>
<p/>
<data:contactFormNameMsg/>
<br/>
<input class='contact-form-name' expr:id='data:widget.instanceId + "_contact-form-name"' name='name' size='30' type='text' value=''/>
<p/>
<data:contactFormEmailMsg/> <span style='font-weight: bolder;'>*</span>
<br/>
<input class='contact-form-email' expr:id='data:widget.instanceId + "_contact-form-email"' name='email' size='30' type='text' value=''/>
<p/>
<data:contactFormMessageMsg/> <span style='font-weight: bolder;'>*</span>
<br/>
<textarea class='contact-form-email-message' cols='25' expr:id='data:widget.instanceId + "_contact-form-email-message"' name='email-message' rows='5'/>
<p/>
<input class='contact-form-button contact-form-button-submit' expr:id='data:widget.instanceId + "_contact-form-submit"' expr:value='data:contactFormSendMsg' type='button'/>
<p/>
<div style='text-align: center; max-width: 222px; width: 100%'>
<p class='contact-form-error-message' expr:id='data:widget.instanceId + "_contact-form-error-message"'/>
<p class='contact-form-success-message' expr:id='data:widget.instanceId + "_contact-form-success-message"'/>
</div>
</form>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='HTML5' locked='false' title='Google Map' type='HTML'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6205.693904530762!2d91.77637669925136!3d22.35635969938983!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd982bf625753%3A0x33cc004d7cfe8210!2sImam%20Uddin%20%7C%20imamuddinwp%20-%20Shopify%20Expert%20%7C%20SEO%20Expert!5e0!3m2!1sen!2sbd!4v1633755525841!5m2!1sen!2sbd" width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
</div>
</b:if>
<div class='main-wrapper'>
<b:section class='main' id='main' showaddelement='no'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='1'>
<b:widget-settings>
<b:widget-setting name='showDateHeader'>true</b:widget-setting>
<b:widget-setting name='commentLabel'>Comments</b:widget-setting>
<b:widget-setting name='style.textcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showShareButtons'>true</b:widget-setting>
<b:widget-setting name='authorLabel'>By</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#ffffff</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'>#ffffff</b:widget-setting>
<b:widget-setting name='timestampLabel'>•</b:widget-setting>
<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='showLabels'>true</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='postLabelsLabel'>Tags:</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'>false</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#ffffff</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'>
<b:if cond='!data:view.isHomepage'>
<b:include name='noContentPlaceholder'/>