-
Notifications
You must be signed in to change notification settings - Fork 38
/
tech-jet-core-12-21.xml
1731 lines (1674 loc) · 118 KB
/
tech-jet-core-12-21.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:js='true' b:layoutsVersion='3' b:render='true' b:responsive='true' b:templateUrl='https://www.jettheme.com' b:templateVersion='2.8.2' 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:attr name='xmlns' value=''/><b:attr name='xmlns:b' value=''/><b:attr name='xmlns:expr' value=''/><b:attr name='xmlns:data' value=''/><head>
<b:include data='blog' name='JetAll-head-content'/>
<b:if cond='!data:view.isLayoutMode'>
<b:skin><![CDATA[/*
[!] Find (JetAll-head-content) to edit Open Graph and other Meta Tags
---------------------------
# JetTheme v2.8.2 Setting #
---------------------------
<Variable name="tagline" description="Tagline" type="string" value=""/>
[!] Homepage tagline, ex: BlogName - Tagline
<Variable name="separator" description="Separator" type="string" value=" - "/>
[!] Title separator ( – ), ( | ), ( • )
<Variable name="description" description="Description" type="string" value=""/>
[!] Default meta description, recommended 155–160 characters
<Variable name="cover" description="Cover" type="string" value=""/>
[!] Default meta image, size recommended 1600x700 px
<Variable name="logo" description="Logo" type="string" value=""/>
[!] Schema logo, size recommended 175x55 px
<Variable name="favicon" description="Favicon" type="string" value=""/>
[!] Favicon high resolution, required format (.png), min size 200x200 px
<Variable name="analyticId" description="Analytic ID" type="string" value=""/>
[!] New Google Analytic 2021
<Variable name="caPubAdsense" description="caPubAdsense ID" type="string" value=""/>
[!] number only
<Variable name="autoTOC" description="Table of content" type="string" value="true"/>
[!] true or false
<Variable name="positionTOC" description="Position TOC" type="string" value="noscript"/>
[!] tag name, class, id
<Variable name="maxLabel" description="Limit Label" type="string" value="3"/>
[!] Limit Label Display
-------------------------
# JetTheme Css Variable #
-------------------------
<Group description="_Main Color">
<Variable name="keycolor" description="Main Color" type="color" default="#f67938" value="#f67938"/>
<Variable name="body.background" description="Body Background Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="body.text.color" description="Font Color" type="color" default="#686868" value="#686868"/>
<Variable name="posts.title.color" description="Heading Color" type="color" default="#343a40" value="#000000"/>
<Variable name="body.link.color" description="Link Color" type="color" default="$(keycolor)" value="#f67938"/>
<Variable name="body.hover.color" description="Link Hover" type="color" default="#f46013" value="#f46013"/>
<Variable name="border.color" description="Border Color" type="color" default="#efefef" value="#efefef"/>
<Variable name="posts.text.color" description="Blockquote Border Color" type="color" default="$(keycolor)" value="#f67938"/>
</Group>
<Group description="_Typography">
<Variable name="body.text" description="Body Font" type="font" default="normal normal 16px system-ui,-apple-system,Segoe UI,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji" value="normal normal 16px system-ui,-apple-system,Segoe UI,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji"/>
<Variable name="posts.title" description="Heading Font" type="font" default="normal bold 40px var(--bs-font-sans-serif)" value="normal bold 40px var(--bs-font-sans-serif)"/>
<Variable name="title.h2" description="H2 Size" type="length" default="26px" min="12px" max="50px" value="26px"/>
<Variable name="title.h3" description="H3 Size" type="length" default="22px" min="12px" max="50px" value="22px"/>
<Variable name="title.h4" description="H4 Size" type="length" default="20px" min="12px" max="50px" value="20px"/>
<Variable name="title.h5" description="H5 Size" type="length" default="18px" min="12px" max="50px" value="18px"/>
<Variable name="title.h6" description="H6 Size" type="length" default="16px" min="12px" max="50px" value="16px"/>
</Group>
<Group description="_Logo">
<Variable name="logo.width" description="Logo Max Width" type="length" default="200px" min="50px" max="500px" value="200px"/>
<Variable name="logo.width.mobile" description="Logo Max Width (mobile)" type="length" default="150px" min="50px" max="500px" value="150px"/>
</Group>
<Group description="_Header Color">
<Variable name="header.bg" description="Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="header.color" description="Font Color " type="color" default="#686868" value="#686868"/>
<Variable name="header.border" description="Border Color" type="color" default="#efefef" value="#efefef"/>
</Group>
<Group description="_Menu">
<Variable name="tabs.font" description="Menu Font" type="font" default="normal bold 16px var(--bs-font-sans-serif)" value="normal bold 16px var(--bs-font-sans-serif)"/>
<Variable name="tabs.color" description="Font Color" type="color" default="$(body.text.color)" value="#686868"/>
<Variable name="tabs.hover" description="Font Hover" type="color" default="$(keycolor)" value="#f67938"/>
<Variable name="tabs.selected.color" description="Font Selected" type="color" default="$(keycolor)" value="#f67938"/>
</Group>
<Group description="_Dropdown Menu">
<Variable name="dropdown.font" description="Font Size" type="length" default="16px" min="12px" max="50px" value="15px"/>
<Variable name="dropdown.bg" description="Background Color" type="color" default="$(body.text.color)" value="#ffffff"/>
<Variable name="dropdown.color" description="Font Color" type="color" default="$(keycolor)" value="#686868"/>
<Variable name="dropdown.hover" description="Font Hover" type="color" default="$(keycolor)" value="#f67938"/>
<Variable name="dropdown.selected" description="Dropdown Selected Color" type="color" default="$(keycolor)" value="#f67938"/>
</Group>
<Group description="_Footer Color">
<Variable name="footer.bg" description="Background Color" type="color" default="#212529" value="#212529"/>
<Variable name="footer.color" description="Font Color" type="color" default="#9fa6ad" value="#9fa6ad"/>
<Variable name="footer.link" description="Link Color" type="color" default="#9fa6ad" value="#9fa6ad"/>
<Variable name="footer.border" description="Border Color" type="color" default="#323539" value="#323539"/>
</Group>
<Group description="_Socket Color">
<Variable name="socket.bg" description="Background Color" type="color" default="#09080c" value="#09080c"/>
<Variable name="socket.color" description="Font Color" type="color" default="#9fa6ad" value="#9fa6ad"/>
</Group>
<Group description="_Button">
<Variable name="posts.icons.color" description="Button Color" type="color" default="$(keycolor)" value="#f67938"/>
<Variable name="labels.background.color" description="Button Hover" type="color" default="#f46013" value="#f46013"/>
</Group>
<Group description="_Comment Form">
<Variable name="body.text.font" description="Font" type="font" default="normal normal 14px system-ui,-apple-system,Segoe UI,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji" value="normal normal 14px system-ui,-apple-system,Segoe UI,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji"/>
<Variable name="posts.background.color" description="Background" type="color" default="transparent" value="rgba(0,0,0,0)"/>
</Group>
*/
/*
+----------------------------------------------------------+
-----_-+-------------------------------------------+-_-----
----/o)| Project : Tech Bangla Info |(o\----
---/ / | Theme Name : Core v:2.8.2 | \ \---
--( (_ | _ Author Name : ImAmUdDiN _ | _) )--
-((\ \)+-/o)-----------------------------------(o\-+(/ /))-
-(\\\ \_/ / \ \_/ ///)-
--\ / https://github.com/imamuddinwp \ /--
---\____/ | | \____/---
---| | +++++++++++++++++++++++++++++++++++++++ | |---
-----------------------------------------------------------
+----------------------------------------------------------+
*/
:root{--bs-font-sans-serif:$(body.text.family);--bs-body-bg:$(body.background);--bs-body-color:$(body.text.color);--jt-primary:$(keycolor);--jt-heading-color:$(posts.title.color);--jt-heading-link:$(posts.title.color);--jt-heading-hover:$(keycolor);--jt-link-color:$(body.link.color);--jt-link-hover:$(body.hover.color);--jt-blockquote:$(posts.text.color);--jt-btn-primary:$(posts.icons.color);--jt-btn-primary-hover:$(labels.background.color);--jt-btn-light-hover:$(posts.title.color);--jt-border-light:$(border.color);--jt-bg-light:#f3f7f9;--jt-archive-bg:#ffffff;--jt-nav-color:$(tabs.color);--jt-nav-hover:$(tabs.hover);--jt-nav-selected:$(tabs.selected.color);--jt-dropdown-bg:$(dropdown.bg);--jt-dropdown-color:$(dropdown.color);--jt-dropdown-hover:$(dropdown.hover);--jt-dropdown-selected:$(dropdown.selected);--jt-header-bg:$(header.bg);--jt-header-color:$(header.color);--jt-header-border:$(header.border);--jt-footer-bg:$(footer.bg);--jt-footer-color:$(footer.color);--jt-footer-link:$(footer.link);--jt-footer-border:$(footer.border);--jt-socket-bg:$(socket.bg);--jt-socket-color:$(socket.color)}.dark-mode{--bs-body-bg:hsl(210, 11%, 15%);--bs-body-color:hsl(210, 11%, 80%);--jt-heading-color:hsl(210, 11%, 80%);--jt-heading-link:hsl(210, 11%, 80%);--jt-btn-light-hover:hsl(210, 11%, 85%);--jt-border-light:hsl(210, 11%, 20%);--jt-bg-light:hsl(210, 11%, 20%);--jt-archive-bg:hsl(210, 11%, 17%);--jt-nav-color:hsl(210, 11%, 70%);--jt-dropdown-bg:hsl(210, 11%, 18%);--jt-dropdown-color:hsl(210, 11%, 70%);--jt-header-bg:hsl(210, 11%, 15%);--jt-header-color:hsl(210, 11%, 80%);--jt-header-border:hsl(210, 11%, 20%);--jt-footer-bg:hsl(210, 11%, 15%);--jt-footer-color:hsl(210, 11%, 80%);--jt-footer-border:hsl(210, 11%, 20%);--jt-socket-bg:hsl(210, 11%, 17%);--jt-socket-color:hsl(210, 11%, 80%)}body{font:$(body.text);color:var(--bs-body-color);background-color:var(--bs-body-bg);line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font:$(posts.title);line-height:1.2}a{transition-property:background-color,border-color,color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.3s;color:var(--jt-link-color)}a:hover{color:var(--jt-link-hover)}.fs-7{font-size:.875rem;line-height:1.25rem}.fs-8{font-size:.75rem;line-height:1rem}.fs-9{font-size:.7rem;line-height:1rem}.btn{box-shadow:none!important}.btn-sm{min-width:32px;min-height:32px}iframe,img,svg{max-width:100%}img{height:auto;object-fit:cover}label{cursor:pointer}.visually-hidden{position:unset!important}.form-control:focus{box-shadow:none;border-color:var(--jt-primary)}.form-control::placeholder{opacity:.5}.dropdown-toggle::after{border-width:.25em .25em 0}.dropdown-menu{margin:0;padding:0}.ratio:before{content:none}.ratio-1x1{padding-bottom:100%}.ratio-4x3{padding-bottom:75%}.ratio-16x9{padding-bottom:56.25%}.ratio-21x9{padding-bottom:43%}.object-cover{object-fit:cover}.hover-text-primary:hover,.jt-text-primary,input:checked~.check-text-primary{color:var(--jt-primary)!important}.jt-btn-outline-primary:hover,.jt-btn-primary{color:#fff;background-color:var(--jt-btn-primary);border-color:var(--jt-btn-primary)}.jt-btn-light{color:var(--bs-body-color);background-color:var(--jt-bg-light);border-color:var(--jt-bg-light)}.jt-btn-light:hover{color:var(--jt-btn-light-hover)}.hover-btn-primary:hover,.jt-btn-primary:hover,input:checked+.jt-btn-outline-primary{color:#fff!important;background-color:var(--jt-btn-primary-hover)!important;border-color:var(--jt-btn-primary-hover)!important}.jt-btn-outline-primary{color:var(--jt-btn-primary);border-color:var(--jt-btn-primary)}.jt-bg-primary{background-color:var(--jt-primary)}.jt-bg-light{background-color:var(--jt-bg-light)}.bg-archive{background-color:var(--jt-archive-bg)}.jt-border-light{border-color:var(--jt-border-light)!important}input:checked~.d-block-check{display:block!important}input:checked~.d-none-check{display:none!important}.accordion-header,.accordion-item,.dropdown-menu{background-color:var(--bs-body-bg);color:var(--bs-body-color);border-color:var(--jt-border-light)}.lazyload{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.3s;opacity:0}.lazyload.loaded{opacity:1}pre{background-color:var(--jt-bg-light);margin-bottom:1rem;padding:1rem;font-size:.75rem}blockquote{border-left:5px solid var(--jt-blockquote);color:inherit;font-size:1.125rem;margin-bottom:1.5rem;margin-top:1.5rem;padding-left:1rem}.header-animate.header-hidden{transform:translateY(-100%);box-shadow:none!important}#header{background-color:var(--jt-socket-bg);color:var(--jt-header-color);transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.3s;min-height:50px;border-bottom:1px solid var(--jt-header-border)}.header-social{border-right:1px solid var(--jt-header-border)}.jt-icon{display:inline-block;height:1em;vertical-align:-.15em;width:1em;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.jt-icon-center{font-family:sans-serif}#dark-toggler,#navbar-toggler,#search-toggler{line-height:1}#dark-toggler .icon-mode:before{content:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.1em' height='1.1em' viewBox='0 0 24 24' fill='none' stroke='%23686868' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'%3E%3C/path%3E%3C/svg%3E")}.dark-mode #dark-toggler .icon-mode:before{content:url("data:image/svg+xml;utf8,%3Csvg width='1.1em' height='1.1em' fill='white' stroke='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z'%3E%3C/path%3E%3C/svg%3E")}#footer{background-color:var(--jt-footer-bg);color:var(--jt-footer-color);border-top:1px solid var(--jt-footer-border)}#socket{background-color:var(--jt-socket-bg);color:var(--jt-socket-color)}#navbar{z-index:9999}#navbar .menu-item{position:relative}#navbar .nav-link{min-height:40px}#navbar .dropdown-toggle{cursor:pointer;align-items:center;display:flex}#navbar .dropdown-menu,#navbar .dropdown-toggle,#navbar .nav-link,#navbar.d-block{-webkit-transition:.3s;-ms-transition:.3s;-o-transition:.3s;transition:.3s}#navbar .navbar-nav>.menu-item>.nav-link{font:$(tabs.font);line-height:1.5;color:var(--jt-nav-color)}#navbar .navbar-nav>.menu-item:hover>.dropdown-toggle,#navbar .navbar-nav>.menu-item:hover>.nav-link{color:var(--jt-nav-hover)}#navbar .navbar-nav>.menu-item>.active~.dropdown-toggle,#navbar .navbar-nav>.menu-item>.nav-link.active{color:var(--jt-nav-selected)}.logo-wrap{width:$(logo.width)}#search-header .dropdown-menu{background-color:var(--jt-dropdown-bg);color:var(--jt-dropdown-color);border-color:var(--jt-header-border);min-width:300px;right:0;top:100%}.blog-admin{display:none}#pagination li+li{margin-left:5px}.no-items{display:none}.feature-image,.separator,.tr-caption-container{margin-bottom:1rem}.tr-caption-container{width:100%}.separator a,.tr-caption-container a{margin:0!important;padding:0!important}.tr-caption{font-size:12px;font-style:italic}.widget:last-child{margin-bottom:0!important}#post-body .widget{margin-top:1.5rem}.item-title{color:var(--jt-heading-link)}.item-title:hover{color:var(--jt-heading-hover)}#comment-editor{width:100%}#primary .widget-title{font-weight:300;text-transform:uppercase}#footer .widget-title{text-transform:uppercase}#footer .widget-title,#sidebar .widget-title{font-size:13px!important}#primary .widget-title>span{background-color:var(--bs-body-bg);padding-right:5px;position:relative}#main .widget-title:before,#sidebar .widget-title:before{background-color:var(--jt-bg-light);content:"";height:1px;display:block;position:absolute;top:50%;transform:translateY(-50%);width:100%}#main .widget-title:before{border-right:30px solid var(--jt-primary);height:5px}.send-error:not(.loading) .contact-form-msg,.send-success:not(.loading) .contact-form-msg{display:block!important}.send-success .contact-form-msg{border-color:rgba(25,135,84,.3)!important}.send-error .contact-form-msg{border-color:rgba(255,193,7,.3)!important}.send-success .contact-form-msg:before{content:attr(data-success)}.send-error .contact-form-msg:before{content:attr(data-error)}hr.example-ads:before{content:"Advertisement here"}hr.example-ads{background-color:var(--jt-bg-light);border-radius:.25rem;font-size:.875rem;height:auto;margin:0;opacity:1;padding:1.5rem 0;text-align:center}body>.google-auto-placed{margin:0 auto 1.5rem;max-width:1108px}.google-auto-placed>ins{margin:0!important}.h1,h1{font-size:calc(1.375rem + 1.5vw)}.h2,h2{font-size:calc(1.325rem + .9vw)}.h3,h3{font-size:calc(1.3rem + .6vw)}.h4,h4{font-size:calc(1.275rem + .3vw)}.h5,h5{font-size:$(title.h5)}.h6,h6{font-size:$(title.h6)}.entry-title{color:var(--jt-heading-color)}.entry-text h1,.entry-text h2,.entry-text h3,.entry-text h4,.entry-text h5,.entry-text h6{color:var(--jt-heading-color);padding-top:1em;margin-bottom:1rem}.entry-text li{margin-bottom:.5rem}@media (min-width:576px){.ratio-sm-4x3{padding-bottom:75%}.ratio-sm-16x9{padding-bottom:56.25%}.border-sm-end{border-right-width:1px!important;border-right-style:solid}#post-pager .next-page{border-left:1px solid}}@media (min-width:768px){.position-md-relative{position:relative}.border-md-end{border-right-width:1px!important;border-right-style:solid}}@media (min-width:992px){.border-lg-end{border-right-width:1px!important;border-right-style:solid}#navbar .navbar-nav>.menu-item{display:flex}#navbar .dropdown-menu{background-color:var(--jt-dropdown-bg);border-color:var(--jt-header-border);margin-top:-10px;display:block;opacity:0;visibility:hidden;pointer-events:none;box-shadow:5px 10px 10px -5px rgba(0,0,0,.14);top:100%;min-width:150px}#navbar .dropdown-menu .nav-link{padding-right:20px;font-size:$(dropdown.font);color:var(--jt-dropdown-color)}#navbar .dropdown-menu .dropdown-toggle{position:absolute;right:10px;top:20px}#navbar .dropdown-menu .dropdown-menu{left:100%;top:-1px}#navbar .dropdown-menu .menu-item:hover>.dropdown-toggle,#navbar .dropdown-menu .menu-item:hover>.nav-link{color:var(--jt-dropdown-hover)}#navbar .dropdown-menu .menu-item>.active~.dropdown-toggle,#navbar .dropdown-menu .menu-item>.nav-link.active{color:var(--jt-dropdown-selected)}#navbar .menu-item:hover>.dropdown-menu{opacity:1;visibility:visible;pointer-events:unset;margin:0}#navbar .navbar-nav>.menu-item>.nav-link{padding:1.5rem 1.2rem;white-space:nowrap}#navbar .navbar-nav>.menu-item>.dropdown-toggle{bottom:0;pointer-events:none;position:absolute;right:5px;top:3px}#sidebar{border-left:1px solid}#footer-widget .widget{margin-bottom:0!important}}@media (min-width:1200px){.h1,h1{font-size:$(posts.title.size)}.h2,h2{font-size:$(title.h2)}.h3,h3{font-size:$(title.h3)}.h4,h4{font-size:$(title.h4)}}@media (max-width:991.98px){input:checked~.dropdown-menu{display:block}input:checked+.dropdown-toggle{color:var(--jt-dropdown-selected)}.logo-wrap{width:$(logo.width.mobile)}#search-header .dropdown-menu{width:100%}#navbar{background-color:var(--jt-header-bg);padding-top:70px;padding-bottom:30px;position:fixed;left:0;right:0;top:0;bottom:0;width:auto}#navbar.d-block{opacity:0;transform:translateX(-20%)}#navbar.show{transform:translateX(0);opacity:1}#navbar .navbar-nav{max-height:100%;overflow-y:auto}#navbar-toggle:checked~#header-main #navbar{display:block}#navbar .nav-link{border-bottom:1px solid var(--jt-header-border);font-size:16px!important;color:var(--jt-dropdown-color)}#navbar .menu-item:hover>.nav-link{color:var(--jt-dropdown-hover)}#navbar .active>.nav-link{color:var(--jt-dropdown-selected)}#navbar .dropdown-toggle{border-left:1px solid var(--jt-header-border);height:2.5rem;padding:0 1rem;position:absolute;right:0;top:0}#navbar .dropdown-menu{background-color:var(--jt-dropdown-bg);border:none;padding-left:10px}#sidebar{border-top:1px solid}}@media (max-width:575.98px){.feature-posts .item-thumbnail{margin-bottom:-150px}.feature-posts .item-thumbnail a{border-radius:0!important;box-shadow:none!important;padding-bottom:75%}.feature-posts .item-content{background-color:var(--bs-body-bg);border:5px solid;border-radius:.25rem}#post-pager .prev-page+.next-page{border-top:1px solid}.full-width,.px-3 .google-auto-placed{margin-left:-1rem;margin-right:-1rem;width:auto!important}#footer-widget .widget{padding-left:3rem;padding-right:3rem;text-align:center}}
/*Your custom CSS is here*/
]]></b:skin>
</b:if>
<b:if cond='data:view.isLayoutMode'>
<b:template-skin><![CDATA[
body#layout .section h4 {
display: none;
}
body#layout.ltr div.section {
border: 0 none;
margin: 0;
}
body#layout .no-items {
display: block;
}
body#layout.ltr div.layout-widget-description {
font-size: 10px;
}
body#layout.ltr .draggable-widget .widget-wrap3{
margin:0;
}
body#layout:before {
background-color: #f67938;
border-radius: 30px;
color: #fff;
content: "JetTheme Version 2.8.2";
display: block;
font-family: Roboto,sans-serif;
padding: 10px 20px;
position: absolute;
right: 15px;
top: 15px;
}
body#layout #header:before,
body#layout #blog-post:before,
body#layout #sidebar-static:before,
body#layout #sidebar-sticky:before,
body#layout #footer:before,
body#layout #before-blog:before,
body#layout #after-blog:before,
body#layout #before-post:before,
body#layout #jet-options:before,
body#layout #ads-post:before {
font-family: Roboto,sans-serif;
background-color: #f67938;
color: #fff;
display: block;
padding: 10px;
}
body#layout #header:before {
content: "Header";
}
body#layout #blog-post:before {
content: "Post";
}
body#layout #sidebar-static:before {
content: "Sidebar ";
}
body#layout #sidebar-sticky:before {
content: "Sticky Sidebar";
}
body#layout #footer:before {
content: "Footer";
}
body#layout #before-blog:before {
content: "Before Blog";
}
body#layout #after-blog:before {
content: "After Blog";
}
body#layout #before-post:before {
content: "Before Post";
}
body#layout #jet-options:before {
content: "JetTheme Settings";
}
body#layout #ads-post:before {
content: "Advertisements Inner Post";
}
body#layout #header-main {
display: flex;
}
body#layout #header-main>.widget {
width: 50%;
}
]]></b:template-skin>
</b:if>
<b:defaultmarkups>
<b:defaultmarkup type='Common'>
<b:includable id='JetAll-head-content'>
<script>/*<![CDATA[*/function rmurl(e,t){var r=new RegExp(/\?m=0|&m=0|\?m=1|&m=1/g);return r.test(e)&&(e=e.replace(r,""),t&&window.history.replaceState({},document.title,e)),e}const currentUrl=rmurl(location.toString(),!0);null!==localStorage&&"dark"==localStorage.getItem("theme")&&(document.querySelector("html").className="dark-mode");/*]]>*/</script>
<meta expr:content='"text/html; charset=" + data:blog.encoding' http-equiv='Content-Type'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<!-- Primary Meta Tags -->
<link expr:href='data:view.url.canonical' rel='canonical'/>
<meta expr:content='data:view.url.canonical' property='og:url'/>
<meta expr:content='data:blog.title + " Team"' name='author'/>
<meta expr:content='data:blog.title' name='application-name'/>
<meta expr:content='data:blog.adultContent ? "adult" : "general"' name='rating'/>
<!-- Favicon -->
<b:if cond='data:skin.vars.favicon'>
<b:with value='data:skin.vars.favicon' var='favicon'>
<link expr:href='resizeImage(data:favicon,32,"1:1")' rel='icon' sizes='32x32' type='image/png'/>
<link expr:href='resizeImage(data:favicon,96,"1:1")' rel='icon' sizes='96x96' type='image/png'/>
<link expr:href='resizeImage(data:favicon,144,"1:1")' rel='icon' sizes='144x144' type='image/png'/>
<link expr:href='resizeImage(data:favicon,180,"1:1")' rel='apple-touch-icon' type='image/png'/>
<link expr:href='resizeImage(data:favicon,152,"1:1")' rel='apple-touch-icon-precomposed' type='image/png'/>
<meta expr:content='resizeImage(data:favicon,150,"1:1")' name='msapplication-TileImage'/>
</b:with>
<b:else/>
<link expr:href='data:blog.blogspotFaviconUrl' rel='icon' type='image/x-icon'/>
</b:if>
<!-- Theme Color -->
<meta expr:content='data:skin.vars.body_background' name='theme-color'/>
<meta expr:content='data:skin.vars.body_background' name='msapplication-TileColor'/>
<meta expr:content='data:skin.vars.body_background' name='msapplication-navbutton-color'/>
<meta expr:content='data:skin.vars.body_background' name='apple-mobile-web-app-status-bar-style'/>
<meta content='yes' name='apple-mobile-web-app-capable'/>
<!-- Title -->
<b:with value='data:view.isHomepage ? data:blog.title + (data:skin.vars.tagline ? data:skin.vars.separator + data:skin.vars.tagline : "") : data:view.isError ? "404 (Error) Not Found" + data:skin.vars.separator + data:blog.title : data:blog.pageName ? data:blog.pageName + data:skin.vars.separator + data:blog.title : "Latest Posts" + data:skin.vars.separator + data:blog.title' var='meta_title'>
<title><data:meta_title/></title>
<meta expr:content='data:meta_title' name='title'/>
<meta expr:content='data:meta_title' property='og:title'/>
<meta expr:content='data:meta_title' name='twitter:title'/>
</b:with>
<!-- Image -->
<b:with value='data:view.featuredImage ?: data:skin.vars.cover' var='meta_image'>
<meta expr:content='data:meta_image' property='og:image'/>
<meta expr:content='data:meta_image' name='twitter:image'/>
</b:with>
<!-- Description -->
<b:with value='data:view.description ?: data:skin.vars.description' var='meta_desc'>
<meta expr:content='data:meta_desc' name='description'/>
<meta expr:content='data:meta_desc' property='og:description'/>
<meta expr:content='data:meta_desc' name='twitter:description'/>
</b:with>
<!-- Open Graph / Facebook -->
<meta content='' property='fb:app_id'/>
<meta content='' property='article:author'/>
<meta content='website' property='og:type'/>
<meta expr:content='data:blog.locale' property='og:locale'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta expr:content='data:view.url.canonical' property='og:url'/>
<meta expr:content='data:view.title' property='og:image:alt'/>
<!-- Twitter -->
<meta content='' name='twitter:site'/>
<meta content='' name='twitter:creator'/>
<meta content='summary_large_image' name='twitter:card'/>
<meta expr:content='data:view.url.canonical' name='twitter:url'/>
<meta expr:content='data:view.title' name='twitter:image:alt'/>
<!-- Feed -->
<data:blog.feedLinks/>
<b:if cond='data:view.isHomepage'>
<script type='application/ld+json'>{"@context":"https://schema.org","@type":"WebSite","url":"<data:blog.canonicalHomepageUrl/>","name":"<data:blog.title/>","potentialAction":{"@type":"SearchAction","target":"<data:blog.canonicalHomepageUrl/>search?q={search_term_string}&max-results=10","query-input":"required name=search_term_string"}}</script>
</b:if>
<link href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css' rel='stylesheet'/>
</b:includable>
</b:defaultmarkup>
</b:defaultmarkups>
<meta content='gnMOTYm-qUJ7bg3VOtnKHlMvgEPXOfuDU02ulQFTD1U' name='google-site-verification'/>
<meta content='9aad942df4a6593c5fc2d5ea862ca659' name='p:domain_verify'/>
<!-- Your Style and Script before </head> is here -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async='async' src='https://www.googletagmanager.com/gtag/js?id=G-Y5MXQ2649F'/>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Y5MXQ2649F');
</script>
<!-- Cache-control config Tech Bangla Info-->
<include expiration='7d' path='*.css'/>
<include expiration='7d' path='*.js'/>
<include expiration='3d' path='*.gif'/>
<include expiration='3d' path='*.jpeg'/>
<include expiration='3d' path='*.jpg'/>
<include expiration='3d' path='*.png'/>
<include expiration='3d' path='*.webp'/>
<include expiration='3d' path='*.ico'/>
<meta content='sat, 03 jun 2023 00:00:00 GMT' http-equiv='expires'/>
<meta content='public' http-equiv='Cache-control'/>
<b:if cond='!data:view.isPreview'></head><body><textarea disabled readonly id="element-h" style="display:none"><style>/*</b:if></head><body><b:if cond='!data:view.isPreview'>*/</style></textarea></b:if>
<b:section cond='data:view.isLayoutMode' id='upload-image' showaddelement='no'>
<b:widget id='Image50' locked='true' title='Upload Image' type='Image' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>https://1.bp.blogspot.com/-h5fUZDgfXe8/YR87osMq6UI/AAAAAAAAAYk/18JeDAzajvYhKnMnllSf_DSWAm51cueuQCLcBGAsYHQ/s728/placeholder.jpg</b:widget-setting>
<b:widget-setting name='displayHeight'>425</b:widget-setting>
<b:widget-setting name='sectionWidth'>1067</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>728</b:widget-setting>
<b:widget-setting name='link'>#</b:widget-setting>
<b:widget-setting name='caption'><![CDATA["Upload image from computer" > Save > Edit Again > Get URL]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetImage'/>
</b:includable>
<b:includable id='content'/>
</b:widget>
</b:section>
<header class='header-animate sticky-top navbar py-0 navbar-expand-lg' content='itemid' id='header' itemid='#header' itemscope='itemscope' itemtype='https://schema.org/WPHeader'>
<input class='d-none' id='navbar-toggle' type='checkbox'/>
<b:section class='container position-relative px-3 flex-nowrap' id='header-main' maxwidgets='3' showaddelement='no'>
<b:widget id='HTML50' locked='true' title='tech-bangla-info-logo' type='HTML' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'>https://blogger.googleusercontent.com/img/a/AVvXsEgIBDTDWKww0q7yIWlL3HTHAO1-wq0n_Cbxl_U9E8V0Qk_Mpcm4iZYt_EWzZ872Yb0pmiYWaghlaxZSq1fGUfnFdAZ3kPo-NqpqCYd6SlTYnYFUSxHTeQZt0q2g9sVlBLHvIXu_erVTPW3-venMqWDg9H6_YiejL6yzM_ANksWQP8GSEbTD3dYkjGZGPQ</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetLogo'/>
</b:includable>
</b:widget>
<b:widget id='LinkList52' locked='true' title='Icons, Dark, Search' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='text-1'>facebook</b:widget-setting>
<b:widget-setting name='link-1'>https://facebook.com/imamuddinwp</b:widget-setting>
<b:widget-setting name='text-0'>linkedin</b:widget-setting>
<b:widget-setting name='link-0'>https://www.linkedin.com/company/techbanglainfo/</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetSearch'/>
</b:includable>
<b:includable id='content'/>
</b:widget>
<b:widget id='LinkList53' locked='true' title='Menu' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='text-9'>বিনোদন</b:widget-setting>
<b:widget-setting name='link-9'>/search/label/বিনোদন</b:widget-setting>
<b:widget-setting name='text-8'>বিশ্ব-রাজনীতি</b:widget-setting>
<b:widget-setting name='link-7'>/search/label/ইসলামিক-জীবন</b:widget-setting>
<b:widget-setting name='link-8'>/search/label/বিশ্ব-রাজনীতি</b:widget-setting>
<b:widget-setting name='text-10'>Sub Menu 1</b:widget-setting>
<b:widget-setting name='link-5'>#</b:widget-setting>
<b:widget-setting name='link-6'>#sub-start</b:widget-setting>
<b:widget-setting name='link-3'>https://www.imamuddinwp.com/p/faq.html</b:widget-setting>
<b:widget-setting name='link-4'>/search/label/স্বাস্থ্য</b:widget-setting>
<b:widget-setting name='text-1'>টেক নিউজ</b:widget-setting>
<b:widget-setting name='text-0'>Home</b:widget-setting>
<b:widget-setting name='text-3'><![CDATA[FAQ's]]></b:widget-setting>
<b:widget-setting name='text-2'>অনলাইনে ইনকাম</b:widget-setting>
<b:widget-setting name='text-5'>অন্যান্য</b:widget-setting>
<b:widget-setting name='text-4'>স্বাস্থ্য </b:widget-setting>
<b:widget-setting name='text-7'>ইসলামিক-জীবন</b:widget-setting>
<b:widget-setting name='text-6'>Sub Menu 1</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-1'>/search</b:widget-setting>
<b:widget-setting name='link-2'>/search/label/অনলাইনে-ইনকাম</b:widget-setting>
<b:widget-setting name='link-0'>/</b:widget-setting>
<b:widget-setting name='link-10'>#sub-end</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetMenu'/>
</b:includable>
<b:includable id='content'/>
</b:widget>
</b:section>
</header>
<!--Main Content-->
<div id='primary'>
<div class='container px-0'>
<div class='d-lg-flex' id='main-content'>
<div class='col-lg-8 px-3' id='main'>
<b:if cond='data:view.isMultipleItems and !data:view.isError or !data:numPosts == 0'><b:with value='data:view.isHomepage ? "Homepage " + data:blog.title : data:blog.pageName ? data:blog.pageName : "Latest Posts"' var='auto_heading'><h1 class='d-none'><data:auto_heading/></h1></b:with></b:if>
<b:section class='pt-4' cond='data:view.isMultipleItems and !data:view.search.query' id='before-blog' showaddelement='yes'>
<b:widget id='HTML51' locked='false' title='#Advertisement' type='HTML' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<a href="https://www.imamuddinwp.com/" target="_blank" title="Tech Bangla Info"> <img alt="জনপ্রিয়-বাংলা-টেক-ব্লগ-টেক-বাংলা-ইনফো" border="0" height="331" width="1499" src="https://blogger.googleusercontent.com/img/a/AVvXsEh5Zex1U32bKNoJRE_tzCbi6pG32iF1TivGpfB80AL7d4wGP5Et1aMGISzTquz79RSXg5X6Ipo7u0ymdiGhjj7wGEfhphdV0FAumPUZIhBfHD9bak_a3tWcBPu7DziwnaJAd258JjqQA-paS0BpN5Krprq-b9BDHj41wp-SPT7QkGgv05K0KI8wKJOgMQ"/></a>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetHtml'/>
</b:includable>
</b:widget>
<b:widget cond='data:view.isHomepage or data:view.url.canonical == data:blog.canonicalHomepageUrl path "/search?max-results=10"' id='FeaturedPost50' locked='false' title='Featured Post' type='FeaturedPost' visible='true'>
<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'>4475375569491713076</b:widget-setting>
<b:widget-setting name='showFirstImage'>true</b:widget-setting>
<b:widget-setting name='useMostRecentPost'>false</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:include name='JetFeaturedPost'/>
</b:includable>
<b:includable id='blogThisShare'/>
<b:includable id='bylineByName'/>
<b:includable id='bylineRegion'/>
<b:includable id='commentsLink'/>
<b:includable id='commentsLinkIframe'/>
<b:includable id='emailPostIcon'/>
<b:includable id='facebookShare'/>
<b:includable id='footerBylines'/>
<b:includable id='googlePlusShare'/>
<b:includable id='headerByline'/>
<b:includable id='linkShare'/>
<b:includable id='otherSharingButton'/>
<b:includable id='platformShare'/>
<b:includable id='postAuthor'/>
<b:includable id='postCommentsLink'/>
<b:includable id='postJumpLink'/>
<b:includable id='postLabels'/>
<b:includable id='postLocation'/>
<b:includable id='postReactions'/>
<b:includable id='postShareButtons'/>
<b:includable id='postTimestamp'/>
<b:includable id='sharingButton'/>
<b:includable id='sharingButtonContent'/>
<b:includable id='sharingButtons'/>
<b:includable id='sharingButtonsMenu'/>
<b:includable id='sharingPlatformIcon'/>
<b:includable id='snippetedPostByline'/>
<b:includable id='snippetedPostContent'/>
<b:includable id='snippetedPostThumbnail'/>
<b:includable id='snippetedPostTitle'/>
<b:includable id='snippetedPosts'/>
</b:widget>
</b:section>
<b:section class='pt-4' cond='data:view.isPost' id='before-post' showaddelement='yes'>
<b:widget id='HTML52' locked='false' title='#Advertisement' type='HTML' version='2' visible='false'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<hr class="example-ads"/>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'><b:include name='JetHtml'/></b:includable>
</b:widget>
</b:section>
<b:section class='pt-4 pb-5' id='blog-post' maxwidgets='1' showaddelement='no'>
<b:widget id='Blog50' locked='true' title='Blog Posts' type='Blog' visible='true'>
<b:widget-settings>
<b:widget-setting name='showDateHeader'>false</b:widget-setting>
<b:widget-setting name='commentLabel'>Comment</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='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='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' var='top'>
<b:include name='JetBlog'/>
</b:includable>
<b:includable id='aboutPostAuthor'/>
<b:includable id='addComments'/>
<b:includable id='blogThisShare'/>
<b:includable id='bylineByName'/>
<b:includable id='bylineRegion'/>
<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='commentsLink'/>
<b:includable id='commentsLinkIframe'/>
<b:includable id='commentsTitle'/>
<b:includable id='defaultAdUnit'/>
<b:includable id='emailPostIcon'/>
<b:includable id='facebookShare'/>
<b:includable id='feedLinks'/>
<b:includable id='feedLinksBody'/>
<b:includable id='footerBylines'/>
<b:includable id='googlePlusShare'/>
<b:includable id='headerByline'/>
<b:includable id='homePageLink'/>
<b:includable id='iframeComments'/>
<b:includable id='inlineAd'/>
<b:includable id='linkShare'/>
<b:includable id='manageComments'/>
<b:includable id='nextPageLink'/>
<b:includable id='otherSharingButton'/>
<b:includable id='platformShare'/>
<b:includable id='post'/>
<b:includable id='postAuthor'/>
<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' var='post'/>
<b:includable id='postLabels'/>
<b:includable id='postLocation'/>
<b:includable id='postMeta'/>
<b:includable id='postMetadataJSONImage'/>
<b:includable id='postMetadataJSONPublisher'/>
<b:includable id='postPagination'/>
<b:includable id='postReactions'/>
<b:includable id='postShareButtons'/>
<b:includable id='postTimestamp'/>
<b:includable id='postTitle'/>
<b:includable id='previousPageLink'/>
<b:includable id='sharingButton'/>
<b:includable id='sharingButtonContent'/>
<b:includable id='sharingButtons'/>
<b:includable id='sharingButtonsMenu'/>
<b:includable id='sharingPlatformIcon'/>
<b:includable id='threadedCommentForm'/>
<b:includable id='threadedCommentJs'/>
<b:includable id='threadedComments'/>
</b:widget>
</b:section>
<b:section class='d-none' cond='data:view.isPost' id='ads-post' showaddelement='yes'>
<b:widget id='HTML61' locked='false' title='#Advertisement' type='HTML' visible='false'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<hr class="example-ads"/>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetHtml'/>
</b:includable>
</b:widget>
<b:widget id='HTML62' locked='false' title='#Advertisement' type='HTML' visible='false'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<hr class="example-ads"/>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetHtml'/>
</b:includable>
</b:widget>
<b:widget id='HTML63' locked='false' title='#You may also like' type='HTML' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<div data-title="You may also like..." class="custom-posts related-inline visually-hidden" data-shuffle="3" data-items="10" data-func="related_inline_temp"></div>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetHtml'/>
</b:includable>
</b:widget>
<b:widget id='HTML64' locked='false' title='#Advertisement' type='HTML' visible='false'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<hr class="example-ads"/>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetHtml'/>
</b:includable>
</b:widget>
<b:widget id='HTML65' locked='false' title='#Advertisement' type='HTML' visible='false'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<hr class="example-ads"/>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetHtml'/>
</b:includable>
</b:widget>
</b:section>
<b:section class='pb-4' cond='data:view.isMultipleItems and !data:view.search.query' id='after-blog' showaddelement='yes'>
<b:widget id='HTML53' locked='false' title='#Advertisement' type='HTML' version='2' visible='false'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<hr class="example-ads"/>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'><b:include name='JetHtml'/></b:includable>
</b:widget>
</b:section>
</div>
<div class='col-lg-4 px-3 jt-border-light separator-main position-relative ms-auto' content='itemid' id='sidebar' itemid='#sidebar' itemscope='itemscope' itemtype='https://schema.org/WPSideBar'>
<b:section class='pt-4' id='sidebar-static' itemscope='itemscope'>
<b:widget id='PopularPosts50' locked='false' title='Popular Posts' type='PopularPosts' visible='true'>
<b:widget-settings>
<b:widget-setting name='numItemsToShow'>5</b:widget-setting>
<b:widget-setting name='showThumbnails'>true</b:widget-setting>
<b:widget-setting name='showSnippets'>false</b:widget-setting>
<b:widget-setting name='timeRange'>LAST_MONTH</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetPopularPosts'/>
</b:includable>
<b:includable id='blogThisShare'/>
<b:includable id='bylineByName'/>
<b:includable id='bylineRegion'/>
<b:includable id='commentsLink'/>
<b:includable id='commentsLinkIframe'/>
<b:includable id='emailPostIcon'/>
<b:includable id='facebookShare'/>
<b:includable id='footerBylines'/>
<b:includable id='googlePlusShare'/>
<b:includable id='headerByline'/>
<b:includable id='linkShare'/>
<b:includable id='otherSharingButton'/>
<b:includable id='platformShare'/>
<b:includable id='postAuthor'/>
<b:includable id='postCommentsLink'/>
<b:includable id='postJumpLink'/>
<b:includable id='postLabels'/>
<b:includable id='postLocation'/>
<b:includable id='postReactions'/>
<b:includable id='postShareButtons'/>
<b:includable id='postTimestamp'/>
<b:includable id='sharingButton'/>
<b:includable id='sharingButtonContent'/>
<b:includable id='sharingButtons'/>
<b:includable id='sharingButtonsMenu'/>
<b:includable id='sharingPlatformIcon'/>
<b:includable id='snippetedPostByline'/>
<b:includable id='snippetedPostContent'/>
<b:includable id='snippetedPostThumbnail'/>
<b:includable id='snippetedPostTitle'/>
<b:includable id='snippetedPosts'/>
</b:widget>
<b:widget id='Label50' locked='false' title='Categories' type='Label' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>FREQUENCY</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'>
<b:include name='JetLabel'/>
</b:includable>
<b:includable id='cloud'/>
<b:includable id='content'/>
<b:includable id='list'/>
</b:widget>
<b:widget id='Label51' locked='false' title='Hashtag' type='Label' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>FREQUENCY</b:widget-setting>
<b:widget-setting name='display'>CLOUD</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'>
<b:include name='JetLabel'/>
</b:includable>
<b:includable id='cloud'/>
<b:includable id='content'/>
<b:includable id='list'/>
</b:widget>
<b:widget id='HTML66' locked='false' title='#Recent Post' type='HTML' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<div data-title="Recent Post" class="custom-posts visually-hidden" data-items="5" data-func="sidebar_temp"></div>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetHtml'/>
</b:includable>
</b:widget>
</b:section>
<b:section class='position-sticky py-4 top-0' id='sidebar-sticky' itemscope='itemscope'>
<b:widget id='HTML54' locked='false' title='#Advertisement' type='HTML' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<hr class="example-ads"/>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetHtml'/>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
</div>
</div>
<!--Main Content End-->
<footer content='itemid' id='footer' itemid='#footer' itemscope='itemscope' itemtype='https://schema.org/WPFooter'>
<div class='py-5 fs-7' id='footer-main'>
<div class='container px-3'>
<b:section class='row row-cols-sm-2 row-cols-lg-4 justify-content-evenly' id='footer-widget' showaddelement='yes'>
<b:widget id='HTML55' locked='false' title='About Us' type='HTML' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<p>স্বাগতম আপনাকে <b><a href="https://www.imamuddinwp.com/p/about-us.html" title="Tech Bangla Info">'টেক বাংলা ইনফো'</a></b> -তে আসার জন্য। বাংলা ভাষায় <b><a href="https://www.imamuddinwp.com/search/label/অনলাইনে-ইনকাম" title="অনলাইনে ইনকাম; টেক বাংলা ইনফো" target="_blank">অনলাইনে ইনকাম</a></b>, <b>ফ্রিল্যান্সিং</b> , <b>ব্লগিং</b> ,<b>সোশ্যাল মিডিয়া মার্কেটিং</b> , <b><a href="https://www.imamuddinwp.com/search/label/এসইও" target="_blank">এস.ই.ও</a></b> সহ <b>ডিজিটাল মার্কেটিং</b> -এর সব তথ্য পাবেন এখানে। </p>
<p>বাংলাদেশের জনপ্রিয় ব্লগ সাইট <b><a href="https://www.imamuddinwp.com/p/faq.html" title="Tech Bangla Info">'টেক বাংলা ইনফো'</a></b> - এর সাথে যুক্ত থাকুন; থাকুন তথ্য ও প্রযুক্তির সাথে আর প্রযুক্তির আলোয় মেতে উঠুন বাংলায়... </p>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetHtml'/>
</b:includable>
</b:widget>
<b:widget id='LinkList50' locked='false' title='Learn More' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-5'>/p/terms-and-conditions.html</b:widget-setting>
<b:widget-setting name='link-6'>/p/dmca-protection.html</b:widget-setting>
<b:widget-setting name='link-3'>/p/disclaimer.html</b:widget-setting>
<b:widget-setting name='link-4'>/p/privacy-policy.html</b:widget-setting>
<b:widget-setting name='text-1'>Contact Us</b:widget-setting>
<b:widget-setting name='text-0'>About Us</b:widget-setting>
<b:widget-setting name='text-3'>Disclaimer</b:widget-setting>
<b:widget-setting name='text-2'>Sitemap</b:widget-setting>
<b:widget-setting name='text-5'><![CDATA[Terms & Conditions]]></b:widget-setting>
<b:widget-setting name='text-4'>Privacy Policy</b:widget-setting>
<b:widget-setting name='text-6'>DMCA</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-1'>/p/contact-us.html</b:widget-setting>
<b:widget-setting name='link-2'>/p/sitemap.html</b:widget-setting>
<b:widget-setting name='link-0'>/p/about-us.html</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:class name='ps-lg-5'/>
<b:include name='JetLinkList'/>
</b:includable>
<b:includable id='content'/>
</b:widget>
<b:widget id='LinkList51' locked='false' title='Follow Us' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='text-9'>whatsapp</b:widget-setting>
<b:widget-setting name='link-9'>https://wa.me/+8801815682307?text=Greetings!%20This%20Is%20Imam%20Uddin;%20Welcome%20to%20you%20on%20WhatsApp%20Chat</b:widget-setting>
<b:widget-setting name='text-8'>github</b:widget-setting>
<b:widget-setting name='link-7'>https://instagram.com/imamuddinwp</b:widget-setting>
<b:widget-setting name='link-8'>https://github.com/imamuddinwp</b:widget-setting>
<b:widget-setting name='link-5'>https://facebook.com/imamuddinwpbd</b:widget-setting>
<b:widget-setting name='link-6'>https://www.twitter.com/imamuddinwp</b:widget-setting>
<b:widget-setting name='link-3'>https://pinterest.com/imamuddinwp</b:widget-setting>
<b:widget-setting name='link-4'>https://www.youtube.com/@ImamUddinWp</b:widget-setting>
<b:widget-setting name='text-1'>telegram</b:widget-setting>
<b:widget-setting name='text-0'>linkedin</b:widget-setting>
<b:widget-setting name='text-3'>pinterest</b:widget-setting>
<b:widget-setting name='text-2'>tumblr</b:widget-setting>
<b:widget-setting name='text-5'>facebook</b:widget-setting>
<b:widget-setting name='text-4'>youtube</b:widget-setting>
<b:widget-setting name='text-7'>instagram</b:widget-setting>
<b:widget-setting name='text-6'>twitter</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-1'>https://t.me/imamuddinwp</b:widget-setting>
<b:widget-setting name='link-2'>https://imamuddinwp.tumblr.com</b:widget-setting>
<b:widget-setting name='link-0'>https://www.linkedin.com/in/imamuddinwp</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetSocial'/>
</b:includable>
<b:includable id='content'/>
</b:widget>
<b:widget id='HTML58' locked='false' title='Newsletter' type='HTML' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<p>ডিজিটাল মার্কেটিং ও অনলাইনে ইনকাম সম্পর্কিত বিভিন্ন তথ্য ই-মেইল এ পেতে সাবস্ক্রাইব করে রাখুন। </p>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetFollowIt'/>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
<div class='py-3 fs-7 text-center' id='socket'>
<b:section class='container px-3' id='copyright' maxwidgets='1' showaddelement='no'>
<b:widget id='HTML56' locked='true' title='Copyright' type='HTML' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<p>2018 - <span id="cdate">2021</span><script>document.getElementById("cdate").innerHTML = (new Date().getFullYear());</script> ©
<a href="https://www.imamuddinwp.com/" target="_blank" title="Tech Bangla Info; প্রযুক্তির আলোয় মেতে উঠুন বাংলায়...">Tech Bangla Info</a> - powered by: <a href="https://freelancing-geek.blogspot.com/" target="_blank" title="Freelancing Geek; Road To Freelancing World!">Freelancing Geek</a></p>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='JetCopyRight'/>
</b:includable>
</b:widget>
</b:section>
</div>
</footer>
<div class='position-fixed d-none' id='back-to-top' style='right:20px;bottom:20px'><a aria-label='Back to Top' class='btn btn-sm jt-btn-light rounded-circle jt-icon-center' href='#back-to-top' onclick='window.scroll({top:0,left: 0,behavior:'smooth'});'><svg aria-hidden='true' class='jt-icon' height='1em' width='1em'><use xlink:href='#i-arrow-t'/></svg></a></div>
<b:section class='d-none' id='jet-options' maxwidgets='5' showaddelement='no'>
<b:widget id='HTML57' locked='true' title='SVG Icons' type='HTML' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<symbol id="i-whatsapp" viewbox="0 0 512 512" stroke="none" fill="currentColor"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></symbol>
<symbol id="i-pinterest" viewbox="0 0 384 512" stroke="none" fill="currentColor"><path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"></path></symbol>
<symbol id="i-tumblr" viewbox="0 0 320 512" stroke="none" fill="currentColor"><path d="M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"></path></symbol>
<symbol id="i-twitter" fill="currentColor" stroke="none" viewbox="0 0 24 24"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path></symbol>
<symbol id="i-linkedin" fill="currentColor" stroke="none" viewbox="0 0 24 24"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect height="12" width="4" x="2" y="9"></rect><circle cx="4" cy="4" r="2"></circle></symbol>
<symbol id="i-facebook" fill="currentColor" stroke="none" viewbox="0 0 24 24"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path></symbol>
<symbol id="i-arrow-b" viewbox="0 0 24 24"><path d="M19 9l-7 7-7-7"></path></symbol>
<symbol id="i-arrow-l" viewbox="0 0 24 24"><path d="M15 19l-7-7 7-7"></path></symbol>
<symbol id="i-arrow-r" viewbox="0 0 24 24"><path d="M9 5l7 7-7 7"></path></symbol>
<symbol id="i-arrow-t" viewbox="0 0 24 24"><path d="M5 15l7-7 7 7"></path></symbol>
<symbol id="i-instagram" viewbox="0 0 24 24"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line></symbol>
<symbol id="i-youtube" viewbox="0 0 24 24"><path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path><polygon fill="currentColor" points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon></symbol>
<symbol id="i-user" viewbox="0 0 24 24"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></symbol>
<symbol id="i-clock" viewbox="0 0 24 24"><path d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path></symbol>
<symbol id="i-comment" viewbox="0 0 24 24"><path d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z"></path></symbol>
<symbol id="i-menu" viewbox="0 0 24 24" stroke-width="1.5"><path d="M3 6h18M3 12h18M3 18h18"></path></symbol>
<symbol id="i-mail" viewbox="0 0 24 24"><path d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path></symbol>
<symbol id="i-edit" viewbox="0 0 24 24"><path d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"></path></symbol>
<symbol id="i-close" viewbox="0 0 24 24" stroke-width="1"><path d="M6 18L18 6M6 6l12 12"></path></symbol>
<symbol id="i-search" viewbox="0 0 24 24" stroke-width="1.5"><path d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path></symbol>
<symbol id="i-check" viewbox="0 0 24 24"><path d="M5 13l4 4L19 7"></path></symbol>
<symbol id="i-github" viewbox="0 0 24 24"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path></symbol>
<symbol id="i-telegram" stroke="none" fill="currentColor" viewbox="0 0 24 24"><path d="M22.05 1.577c-.393-.016-.784.08-1.117.235-.484.186-4.92 1.902-9.41 3.64-2.26.873-4.518 1.746-6.256 2.415-1.737.67-3.045 1.168-3.114 1.192-.46.16-1.082.362-1.61.984-.133.155-.267.354-.335.628s-.038.622.095.895c.265.547.714.773 1.244.976 1.76.564 3.58 1.102 5.087 1.608.556 1.96 1.09 3.927 1.618 5.89.174.394.553.54.944.544l-.002.02s.307.03.606-.042c.3-.07.677-.244 1.02-.565.377-.354 1.4-1.36 1.98-1.928l4.37 3.226.035.02s.484.34 1.192.388c.354.024.82-.044 1.22-.337.403-.294.67-.767.795-1.307.374-1.63 2.853-13.427 3.276-15.38l-.012.046c.296-1.1.187-2.108-.496-2.705-.342-.297-.736-.427-1.13-.444zm-.118 1.874c.027.025.025.025.002.027-.007-.002.08.118-.09.755l-.007.024-.005.022c-.432 1.997-2.936 13.9-3.27 15.356-.046.196-.065.182-.054.17-.1-.015-.285-.094-.3-.1l-7.48-5.525c2.562-2.467 5.182-4.7 7.827-7.08.468-.235.39-.96-.17-.972-.594.14-1.095.567-1.64.84-3.132 1.858-6.332 3.492-9.43 5.406-1.59-.553-3.177-1.012-4.643-1.467 1.272-.51 2.283-.886 3.278-1.27 1.738-.67 3.996-1.54 6.256-2.415 4.522-1.748 9.07-3.51 9.465-3.662l.032-.013.03-.013c.11-.05.173-.055.202-.057 0 0-.01-.033-.002-.026zM10.02 16.016l1.234.912c-.532.52-1.035 1.01-1.398 1.36z"></path></symbol>
<symbol id="i-download" viewbox="0 0 24 24"><path d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"></path></symbol>
<symbol id="i-eye" viewbox="0 0 24 24"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle></symbol>
<symbol id="i-news" viewbox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M2 5a2 2 0 012-2h8a2 2 0 012 2v10a2 2 0 002 2H4a2 2 0 01-2-2V5zm3 1h6v4H5V6zm6 6H5v2h6v-2z" clip-rule="evenodd"></path><path d="M15 7h1a2 2 0 012 2v5.5a1.5 1.5 0 01-3 0V7z"></path></symbol>
<symbol id="i-phone" viewbox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M2 3a1 1 0 011-1h2.153a1 1 0 01.986.836l.74 4.435a1 1 0 01-.54 1.06l-1.548.773a11.037 11.037 0 006.105 6.105l.774-1.548a1 1 0 011.059-.54l4.435.74a1 1 0 01.836.986V17a1 1 0 01-1 1h-2C7.82 18 2 12.18 2 5V3z"></path></symbol>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<svg style='display:none' xmlns='http://www.w3.org/2000/svg'><data:content/></svg>
</b:includable>
</b:widget>
</b:section>
<b:defaultmarkups>
<b:defaultmarkup type='Common'>
<b:includable id='JetWidgetTitle'>
<b:class name='position-relative mb-4'/>
<b:if cond='data:title not contains "#"'>
<h2 class='widget-title position-relative fs-6 mb-3'><span><data:title/></span></h2>
</b:if>
</b:includable>
<b:includable id='JetHtml'>
<b:include name='JetWidgetTitle'/>
<div class='widget-content text-break'><data:content/></div>
</b:includable>
<b:includable id='JetSocial'>
<b:include name='JetWidgetTitle'/>
<div class='widget-content social-media mb-3 ms-2 ms-sm-0'>
<b:loop index='i' values='data:links' var='link'><a expr:aria-label='data:link.name' expr:class='"mb-2 btn btn-sm jt-btn-light hover-btn-primary rounded-pill jt-icon-center i-" + data:link.name' expr:href='data:link.target' rel='noopener' target='_blank'><b:class cond='data:i != data:links.size - 1' name='me-2'/><svg aria-hidden='true' class='jt-icon'><use expr:xlink:href='"#i-" + data:link.name'/></svg></a></b:loop>
</div>
</b:includable>
<b:includable id='JetPopularPosts'>
<b:include name='JetWidgetTitle'/>
<b:with value='(data:widgets where (w => w.type == "Blog" and w.id == "Blog50" )).first' var='jwidget'>
<div class='widget-content popular-posts'>
<b:loop index='i' values='data:posts' var='post'>
<div class='item-post d-flex mb-3'>
<b:if cond='data:postDisplay.showFeaturedImage'>
<b:if cond='data:post.featuredImage'>
<div class='item-thumbnail me-3' style='width:85px'>
<a class='rounded jt-bg-light overflow-hidden d-block ratio ratio-1x1' expr:href='data:post.url.canonical'>
<img expr:alt='data:post.title' expr:class='data:post.featuredImage.isYoutube ? "object-cover lazyload" : "lazyload"' expr:data-src='data:post.featuredImage.isYoutube ? data:post.featuredImage.youtubeMaxResDefaultUrl : data:post.featuredImage' loading='lazy' src='data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='/>
</a>
</div>
</b:if>
<b:else/>
<div class='item-number me-3'><a class='btn btn-sm rounded-pill jt-icon-center jt-btn-primary' expr:href='data:post.url.canonical'><b:eval expr='data:i + 1'/></a></div>
</b:if>
<div class='item-content col'>
<b:if cond='data:post.labels and data:jwidget.allBylineItems.labels'>
<div class='item-tag mb-1 fw-light fs-8 text-secondary'>
<b:loop index='i' values='data:post.labels where (l => l.name not contains "#") take data:skin.vars.maxLabel' var='label'>
<b:if cond='data:i != 0'>,</b:if>
<a class='text-reset hover-text-primary text-decoration-none' expr:href='data:label.url.canonical + "?max-results=10"' rel='tag'>
<data:label.name/>
</a>
</b:loop>
</div>
</b:if>
<h3 class='item-title fs-7 mb-2'><a class='text-reset text-decoration-none' expr:href='data:post.url.canonical'><data:post.title/></a></h3>
<div class='item-meta text-secondary d-flex flex-wrap fs-8'>
<b:if cond='data:jwidget.allBylineItems.timestamp'>
<small class='me-2'><svg aria-hidden='true' class='me-1 jt-icon'><use xlink:href='#i-clock'/></svg><b:eval expr='data:post.date format "d MMM, yyyy"'/></small>
</b:if>
<b:if cond='data:post.numberOfComments gt 0 and data:jwidget.allBylineItems.comments'>
<small><svg aria-hidden='true' class='me-1 jt-icon'><use xlink:href='#i-comment'/></svg><data:post.numberOfComments/></small>
</b:if>
</div>
<b:if cond='data:postDisplay.showSnippet'>
<div class='item-snippet text-break fs-8 pt-2'><p><b:eval expr='data:post.snippets.short snippet { links: false }'/></p></div>
</b:if>
</div>
</div>
</b:loop>
</div>
</b:with>
</b:includable>
<b:includable id='JetLabel'>
<b:include name='JetWidgetTitle'/>
<div class='widget-content categories'>
<ul expr:class='data:display + " d-flex flex-wrap list-unstyled"'><b:loop index='i' values='data:labels' var='label'><b:if cond='data:display == "list" and data:label.name not contains "#"'><li class='mb-2 pe-2 col-6'><a class='text-reset fw-bold hover-text-primary text-decoration-none' expr:href='data:label.url + "?max-results=10"'><span class='align-middle'><data:label.name/></span><b:if cond='data:showFreqNumbers'><span class='ms-1 fw-light fs-9'>[<data:label.count/>]</span></b:if></a></li><b:elseif cond='data:display == "cloud" and data:label.name contains "#"'/><li class='me-2 mb-2'><a class='btn btn-sm jt-btn-light rounded-pill px-3' expr:href='data:label.url + "?max-results=10"'><span class='align-middle'><data:label.name/></span><b:if cond='data:showFreqNumbers'><span class='ms-1 fw-light fs-9'>[<data:label.count/>]</span></b:if></a></li></b:if></b:loop></ul>
</div>
</b:includable>
<b:includable id='JetPageList'>
<b:include name='JetWidgetTitle'/>
<div class='widget-content'>
<ul>
<b:loop values='data:links' var='link'>
<li>
<a expr:href='data:link.href'>
<b:class cond='data:link.isCurrentPage or data:view.url.canonical == data:link.href' name='current-item'/>
<data:link.title/>
</a>
</li>
</b:loop>
</ul>
</div>
</b:includable>
<b:includable id='JetLinkList'>
<b:include name='JetWidgetTitle'/>
<div class='widget-content'>
<ul class='list-unstyled'><b:loop values='data:links' var='link'><li class='mb-2'><a class='text-reset hover-text-primary text-decoration-none' expr:href='data:link.target'><data:link.name/></a></li></b:loop></ul>
</div>
</b:includable>
<b:includable id='JetTextList'>
<b:include name='JetWidgetTitle'/>
<div class='widget-content'>
<ul><b:loop values='data:items' var='item'><li><data:item/></li></b:loop></ul>
</div>
</b:includable>
<b:includable id='JetFollowIt'>
<b:include name='JetWidgetTitle'/>
<div class='widget-content follow-by-email'>
<div class='mb-3'><data:content/></div>
<form action='https://api.follow.it/subscribe?pub=CQoJCcEXztieMrPUAQYKlNRPCjlhk9FW' method='post' target='_blank'><div class='input-group rounded-pill overflow-hidden border border-2 jt-border-light' style='max-width:400px'><input aria-label='Email Address' class='form-control fs-7 bg-transparent border-0 text-reset py-2' id='newsletter-email' name='email' placeholder='Email Address' required='required' type='email'/><button aria-label='Submit Button' class='btn py-0 border-0 text-reset fs-5' type='submit'><svg aria-hidden='true' class='jt-icon'><use xlink:href='#i-mail'/></svg></button></div></form>
</div>
</b:includable>
<b:includable id='JetLogo'>
<b:if cond='data:content contains "</svg>"'>
<b:class name='logo-wrap position-relative'/>
<a class='navbar-brand me-0 fw-bold' expr:href='data:blog.canonicalHomepageUrl'>
<data:content/>
</a>
<b:elseif cond='data:content contains "data:image/" OR data:content contains "https://"'/>
<b:class name='logo-wrap position-relative'/>
<a class='d-block navbar-brand me-0' expr:href='data:blog.canonicalHomepageUrl'>
<img expr:alt='data:blog.title' expr:src='data:content' height='55' loading='lazy' width='175'/>
</a>
<b:else/>
<a class='navbar-brand me-0 fw-bold' expr:href='data:blog.canonicalHomepageUrl'>
<data:content/>
</a>
</b:if>
</b:includable>
<b:includable id='JetMenu'>
<b:class name='collapse navbar-collapse'/>
<b:attr name='id' value='navbar'/>
<label class='d-flex position-absolute fs-1 d-lg-none mt-4 me-4 top-0 end-0' for='navbar-toggle'><svg aria-hidden='true' class='jt-icon'><use xlink:href='#i-close'/></svg></label>
<ul class='navbar-nav px-4 p-lg-0 container' itemscope='itemscope' itemtype='http://schema.org/SiteNavigationElement' role='menu'>
<b:loop index='i' values='data:links' var='link'>
<b:switch var='data:link.target'>
<b:case value='#sub-start'/><input class='d-none' expr:id='"sub-toggle-" + data:i' type='checkbox'/><label class='dropdown-toggle' expr:for='"sub-toggle-" + data:i'/> <ul class="dropdown-menu rounded-0"> <li class="d-none"> <b:case value='#sub-end'/></li> </ul> <b:default/><b:if cond='data:i gt 0'></li></b:if><li class="menu-item"><a class='nav-link' expr:href='data:link.target' itemprop='url' role='menuitem'><b:class cond='data:view.url.canonical == data:link.target or data:view.url.canonical == path(data:blog.canonicalHomepageUrl, data:link.target)' name='active'/><span itemprop='name'><data:link.name/></span></a></b:switch></b:loop></li></ul>
</b:includable>
<b:includable id='JetSearch'>
<b:class name='d-flex align-self-stretch align-items-center order-lg-1 ms-auto'/>
<b:if cond='data:title not contains "#Icons"'>
<div class='header-social d-flex pe-1'><b:loop values='data:links' var='link'><a expr:aria-label='data:link.name' expr:class='"px-2 text-reset jt-icon-center i-" + data:link.name' expr:href='data:link.target' rel='noopener' target='_blank'><svg aria-hidden='true' class='jt-icon'><use expr:xlink:href='"#i-" + data:link.name'/></svg></a></b:loop></div>
</b:if>
<b:if cond='data:title not contains "#Dark"'>
<div class='d-flex align-self-stretch align-items-center ps-1' id='dark-header'>
<label aria-label='Toggle Dark Mode' class='p-2 jt-icon-center' id='dark-toggler'><i class='icon-mode jt-icon'/></label>
</div>
</b:if>
<b:if cond='data:title not contains "#Search"'>
<div class='d-flex align-self-stretch align-items-center position-md-relative' id='search-header'>
<input class='d-none' id='search-toggle' type='checkbox'/>
<label aria-label='Toggle search' class='p-2 check-text-primary hover-text-primary jt-icon-center' for='search-toggle' id='search-toggler'><svg aria-hidden='true' class='fs-5 jt-icon'><use xlink:href='#i-search'/></svg></label>
<div class='dropdown-menu p-1 shadow-sm d-block-check'>
<form class='input-group' expr:action='data:blog.searchUrl' method='GET' target='_top'>
<input class='form-control fs-7 border-0 rounded-0 bg-transparent text-reset' expr:value='data:view.isSearch ? data:view.search.query : ""' id='search-input' name='q' placeholder='Enter your search' required='required' type='text'/>
<input name='max-results' type='hidden' value='10'/>
<button class='btn btn-sm fw-bold py-2 px-4 rounded-pill border-0 jt-btn-primary m-0' type='submit'>Search</button>
</form>