-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog-details.html
More file actions
967 lines (952 loc) · 62.7 KB
/
blog-details.html
File metadata and controls
967 lines (952 loc) · 62.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
<!DOCTYPE html>
<html lang="en" class="darkmode" data-theme="light">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kester - E-Sport HTML Template</title>
<!--================= Favicon =================-->
<link rel="apple-touch-icon" href="assets/images/fav.png">
<link rel="shortcut icon" type="image/x-icon" href="assets/images/fav.png">
<!--================= Bootstrap V5 CSS =================-->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
<!--================= Font Awesome 5 CSS =================-->
<link rel="stylesheet" type="text/css" href="assets/css/all.min.css">
<!--================= RT Icons CSS =================-->
<link rel="stylesheet" type="text/css" href="assets/css/rt-icons.css">
<!--================= Animate css =================-->
<link rel="stylesheet" type="text/css" href="assets/css/animate.min.css">
<!--================= Magnific popup Plugin =================-->
<link rel="stylesheet" type="text/css" href="assets/css/magnific-popup.css">
<!--================= Animate css =================-->
<link rel="stylesheet" type="text/css" href="assets/css/magnific.css">
<!--================= Animate css =================-->
<link rel="stylesheet" type="text/css" href="assets/css/animate.min.css">
<!--================= Swiper Slider Plugin =================-->
<link rel="stylesheet" type="text/css" href="assets/css/swiper-bundle.min.css">
<!--================= Mobile Menu CSS =================-->
<link rel="stylesheet" type="text/css" href="assets/css/metisMenu.css">
<!--================= Main Menu CSS =================-->
<link rel="stylesheet" type="text/css" href="assets/css/rtsmenu.css">
<!--================= Main Stylesheet =================-->
<link rel="stylesheet" type="text/css" href="assets/css/variables/variable1.css">
<!--================= Main Stylesheet =================-->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
</head>
<body>
<!--================= Preloader Section Start Here =================-->
<div id="rts__preloader">
<div class="main-fader responsive-height-comments">
<div class="loader">
<svg viewBox="0 0 866 866" xmlns="http://www.w3.org/2000/svg">
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 164.83 151.5">
<path class="path-0"
d="M117.24,69.24A8,8,0,0,0,115.67,67c-4.88-4-9.8-7.89-14.86-11.62A4.93,4.93,0,0,0,96.93,55c-5.76,1.89-11.4,4.17-17.18,6a4.36,4.36,0,0,0-3.42,4.12c-1,6.89-2.1,13.76-3,20.66a4,4,0,0,0,1,3.07c5.12,4.36,10.39,8.61,15.68,12.76a3.62,3.62,0,0,0,2.92.75c6.29-2.66,12.52-5.47,18.71-8.36a3.49,3.49,0,0,0,1.68-2.19c1.34-7.25,2.54-14.55,3.9-22.58Z"
fill="#e41b23" />
<path class="path-1"
d="M97.55,38.68A43.76,43.76,0,0,1,98,33.44c.41-2.36-.5-3.57-2.57-4.64C91.1,26.59,87,24,82.66,21.82a6.18,6.18,0,0,0-4-.71C73.45,22.55,68.32,24.25,63.22,26c-3.63,1.21-6.08,3.35-5.76,7.69a26.67,26.67,0,0,1-.6,4.92c-1.08,8.06-1.08,8.08,5.86,11.92,3.95,2.19,7.82,5.75,11.94,6.08s8.76-2.41,13.12-3.93c9.33-3.29,9.33-3.3,9.78-14Z"
fill="#e41b23" />
<path class="path-2"
d="M66.11,126.56c5.91-.91,11.37-1.7,16.81-2.71a3.3,3.3,0,0,0,1.87-2.17c1-4.06,1.73-8.19,2.84-12.24.54-2-.11-3-1.55-4.15-5-4-9.9-8.12-15-12a6.19,6.19,0,0,0-4.15-1.1c-5.35.66-10.7,1.54-16,2.54A4,4,0,0,0,48.34,97a109.13,109.13,0,0,0-3,12.19,4.47,4.47,0,0,0,1.34,3.6c5.54,4.36,11.23,8.53,16.91,12.69a10.84,10.84,0,0,0,2.57,1.11Z"
fill="#e41b23" />
<path class="path-3"
d="M127.42,104.12c4.1-2.1,8-3.93,11.72-6a6,6,0,0,0,2.27-3,58.22,58.22,0,0,0,3.18-29.92c-.26-1.7-8-7.28-9.71-6.85A5,5,0,0,0,133,59.65c-2.81,2.49-5.71,4.88-8.33,7.56a9.46,9.46,0,0,0-2.47,4.4c-1.29,6.49-2.38,13-3.35,19.55a5.73,5.73,0,0,0,.83,3.91c2.31,3.08,5,5.88,7.7,9Z"
fill="#e41b23" />
<path class="path-4"
d="M52.58,29.89c-2.15-.36-3.78-.54-5.39-.9-2.83-.64-4.92.1-7,2.32A64.1,64.1,0,0,0,26.09,54.64c-2.64,7.92-2.62,7.84,5.15,10.87,1.76.69,2.73.45,3.93-1C39.79,59,44.54,53.65,49.22,48.2a4.2,4.2,0,0,0,1.13-2c.8-5.32,1.49-10.68,2.24-16.34Z"
fill="#e41b23" />
<path class="path-5" fill="#e41b23"
d="M23,68.13c0,2.51,0,4.7,0,6.87a60.49,60.49,0,0,0,9.75,32.15c1.37,2.13,6.4,3,7,1.2,1.55-5,2.68-10.2,3.82-15.34.13-.58-.58-1.38-.94-2.06-2.51-4.77-5.47-9.38-7.45-14.37C32.94,71,28.22,69.84,23,68.13Z" />
<path class="path-6" fill="#e41b23"
d="M83.91,12.86c-.32.36-.66.71-1,1.07.9,1.13,1.57,2.62,2.73,3.33,4.71,2.84,9.56,5.48,14.39,8.1a9.29,9.29,0,0,0,3.13.83c5.45.69,10.89,1.38,16.35,1.94a10.41,10.41,0,0,0,3.07-.71c-11.48-9.9-24.26-14.61-38.71-14.56Z" />
<path class="path-7" fill="#e41b23"
d="M66.28,132.51c13.36,3.78,25.62,3.5,38-.9C91.68,129.59,79.36,128,66.28,132.51Z" />
<path class="path-8" fill="#e41b23"
d="M127.2,30.66l-1.27.37a18.58,18.58,0,0,0,1,3.08c3,5.52,6.21,10.89,8.89,16.54,1.34,2.83,3.41,3.82,6.49,4.9a60.38,60.38,0,0,0-15.12-24.9Z" />
<path class="bb-9" fill="#e41b23"
d="M117.35,125c5.58-2.32,16.9-13.84,18.1-19.2-2.41,1.46-5.18,2.36-6.78,4.23-4.21,5-7.89,10.37-11.32,15Z" />
</svg>
</svg>
</div>
</div>
</div>
<!--================= Preloader End Here =================-->
<div class="anywere anywere-home"></div>
<!--================= Header Section Start Here =================-->
<header id="rtsHeader" class="rts-header1">
<div class="navbar-sticky">
<div class="navbar-part navbar-part1">
<div class="container">
<div class="navbar-inner">
<a href="index.html" class="logo"><img src="assets/images/logo.png" alt="logo"></a>
<a href="index.html" class="logo-sticky"><img src="assets/images/logo.png"
alt="kester-logo"></a>
<div class="rts-menu">
<nav class="menus menu-toggle">
<ul class="nav__menu">
<li class="has-dropdown"><a class="menu-item" href="#">Home</a>
<ul class="dropdown-ul">
<li class=""><a class="dropdown-link active" href="index.html">Homepage
1</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="index-two.html">Homepage
2</a></li>
<li class="dropdown-li"><a class="dropdown-link"
href="index-three.html">Homepage 3</a></li>
</ul>
</li>
<li><a class="menu-item" href="about.html">About</a></li>
<li class="has-dropdown"><a class="menu-item" href="#">Pages</a>
<ul class="dropdown-ul mega-dropdown">
<li class="mega-dropdown-li">
<ul class="mega-dropdown-ul">
<li class="dropdown-li"><a class="dropdown-link"
href="team.html">Team Details</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="team-details.html">Player Details</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="history.html">History</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="faq.html">FAQ</a>
</li>
</ul>
</li>
<li class="mega-dropdown-li">
<ul class="mega-dropdown-ul">
<li class="dropdown-li"><a class="dropdown-link"
href="gallery.html">Gallery</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="event.html">Event</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="event-details.html">Event Details</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="error.html">Error</a>
</li>
</ul>
</li>
<li class="mega-dropdown-li">
<ul class="mega-dropdown-ul">
<li class="dropdown-li"><a class="dropdown-link"
href="match-schedule.html">Match Schedule</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="match-result.html">Match
Result</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="league-standings.html">Point Table</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="has-dropdown"><a class="menu-item" href="#">Shop</a>
<ul class="dropdown-ul">
<li class="dropdown-li"><a class="dropdown-link" href="shop.html">Shop</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="product-details.html">Product Details</a></li>
<li class="dropdown-li"><a class="dropdown-link" href="cart.html">Cart</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="checkout.html">Checkout</a></li>
<li class="dropdown-li"><a class="dropdown-link" href="account.html">My
Account</a></li>
<li class="dropdown-li"><a class="dropdown-link" href="thank-you.html">Thank
you</a></li>
</ul>
</li>
<li class="has-dropdown"><a class="menu-item active1" href="#">News</a>
<ul class="dropdown-ul">
<li class="dropdown-li"><a class="dropdown-link" href="blog.html">News</a>
</li>
<li class="dropdown-li"><a class="dropdown-link"
href="blog-details.html">News
Details</a></li>
</ul>
</li>
<li><a class="menu-item" href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
<div class="header-action-items header-action-items1">
<div class="search-part">
<div class="search-icon action-item icon"><i class="rt-search"></i></div>
<div class="search-input-area">
<div class="container">
<div class="search-input-inner">
<select class="custom-select select-hidden">
<option value="hide">All Catagorys</option>
<option value="all">All</option>
<option value="league">League</option>
<option value="club">Club</option>
<option value="team">Team</option>
<option value="player">Player</option>
<option value="match">Match</option>
<option value="score">Score</option>
</select>
<div class="input-div">
<div class="search-input-icon"><i class="rt-search mr--10"></i></div>
<input id="searchInput1" class="search-input" type="text"
placeholder="Search by keyword or #">
</div>
<div class="search-close-icon"><i class="rt-xmark"></i></div>
</div>
</div>
</div>
</div>
<div class="cart action-item">
<div class="cart-nav">
<div class="basket-icon cart-icon icon"><a href="#0"><i
class="fal fa-shopping-basket"></i></a></div>
</div>
</div>
</div>
<a class="hamburger-menu aitem">
<div class="hamburger-menu-inner">
<span></span>
<span class=""></span>
<span></span>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="cart-bar">
<div class="cart-header">
<h3 class="cart-heading">MY CART (3 ITEMS)</h3>
<div class="close-cart"><i class="fal fa-times"></i></div>
</div>
<div class="product-area">
<div class="product-item">
<div class="product-detail">
<div class="product-thumb"><img src="assets/images/products/product1.png" alt="product-thumb">
</div>
<div class="item-wrapper">
<span class="product-name">Parachute Jacket</span>
<div class="item-wrapper">
<span class="product-variation"><span class="color">Green /</span>
<span class="size">XL</span></span>
</div>
<div class="item-wrapper">
<span class="product-qnty">3 ×</span>
<span class="product-price">$198.00</span>
</div>
</div>
</div>
<div class="cart-edit">
<div class="quantity-edit">
<button class="button"><i class="fal fa-minus minus"></i></button>
<input type="text" class="input" value="3" />
<button class="button plus">+<i class="fal fa-plus plus"></i></button>
</div>
<div class="item-wrapper d-flex mr--5 align-items-center">
<a href="#" class="product-edit"><i class="fal fa-edit"></i></a>
<a href="#" class="delete-cart"><i class="fal fa-times"></i></a>
</div>
</div>
</div>
<div class="product-item">
<div class="product-detail">
<div class="product-thumb"><img src="assets/images/products/product2.png" alt="product-thumb">
</div>
<div class="item-wrapper">
<span class="product-name">Narrow Trouser</span>
<div class="item-wrapper">
<span class="product-variation"><span class="color">Green /</span>
<span class="size">XL</span></span>
</div>
<div class="item-wrapper">
<span class="product-qnty">2 ×</span>
<span class="product-price">$88.00</span>
</div>
</div>
</div>
<div class="cart-edit">
<div class="quantity-edit">
<button class="button"><i class="fal fa-minus minus"></i></button>
<input type="text" class="input" value="2" />
<button class="button plus">+<i class="fal fa-plus plus"></i></button>
</div>
<div class="item-wrapper d-flex mr--5 align-items-center">
<a href="#" class="product-edit"><i class="fal fa-edit"></i></a>
<a href="#" class="delete-cart"><i class="fal fa-times"></i></a>
</div>
</div>
</div>
<div class="product-item last-child">
<div class="product-detail">
<div class="product-thumb"><img src="assets/images/products/product6.png" alt="product-thumb">
</div>
<div class="item-wrapper">
<span class="product-name">Bellyless Hoodie</span>
<div class="item-wrapper">
<span class="product-variation"><span class="color">Green /</span>
<span class="size">XL</span></span>
</div>
<div class="item-wrapper">
<span class="product-qnty">1 ×</span>
<span class="product-price">$289.00</span>
</div>
</div>
</div>
<div class="cart-edit">
<div class="quantity-edit">
<button class="button"><i class="fal fa-minus minus"></i></button>
<input type="text" class="input" value="2" />
<button class="button plus">+<i class="fal fa-plus plus"></i></button>
</div>
<div class="item-wrapper d-flex mr--5 align-items-center">
<a href="#" class="product-edit"><i class="fal fa-edit"></i></a>
<a href="#" class="delete-cart"><i class="fal fa-times"></i></a>
</div>
</div>
</div>
</div>
<div class="cart-bottom-area">
<span class="spend-shipping"><i class="fal fa-truck"></i> SPENT <span class="amount">$199.00</span> MORE
FOR FREE SHIPPING</span>
<span class="total-price">TOTAL: <span class="price">$556</span></span>
<a href="checkout.html" class="checkout-btn cart-btn">PROCEED TO CHECKOUT</a>
<a href="cart.html" class="view-btn cart-btn">VIEW CART</a>
</div>
</div>
<!--================= Slide Bar Start Here =================-->
<aside class="slide-bar">
<div class="offset-sidebar">
<button class="slide-bar-close ml--30"><i class="fal fa-times"></i></button>
<div class="offset-widget offset-logo mb-30">
<a href="index.html">
<img src="assets/images/logo.png" alt="logo">
</a>
</div>
</div>
<!-- side-mobile-menu start -->
<nav class="side-mobile-menu side-mobile-menu1">
<ul id="mobile-menu-active">
<li class="has-dropdown firstlvl">
<a class="mm-link" href="index.html">Home <i class="rt-angle-down"></i></a>
<ul class="sub-menu">
<li><a href="index.html">Home Style 1</a></li>
<li><a href="index-two.html">Home Style 2</a></li>
<li><a href="index-three.html">Home Style 3</a></li>
</ul>
</li>
<li><a class="mm-link" href="about.html">About</a></li>
<li class="has-dropdown firstlvl">
<a class="mm-link" href="index.html">Pages <i class="rt-angle-down"></i></a>
<ul class="sub-menu mega-dropdown-mobile">
<li class="mega-dropdown-li">
<ul class="mega-dropdown-ul mm-show">
<li class="dropdown-li"><a class="dropdown-link" href="team.html">Team Details</a>
</li>
<li class="dropdown-li"><a class="dropdown-link" href="team-details.html">Player
Details</a>
</li>
<li class="dropdown-li"><a class="dropdown-link" href="history.html">History</a>
</li>
<li class="dropdown-li"><a class="dropdown-link" href="faq.html">FAQ</a>
</li>
</ul>
</li>
<li class="mega-dropdown-li">
<ul class="mega-dropdown-ul mm-show">
<li class="dropdown-li"><a class="dropdown-link" href="gallery.html">Gallery</a>
</li>
<li class="dropdown-li"><a class="dropdown-link" href="event.html">Event</a>
</li>
<li class="dropdown-li"><a class="dropdown-link" href="event-details.html">Event
Details</a>
</li>
<li class="dropdown-li"><a class="dropdown-link" href="error.html">Error</a>
</li>
</ul>
</li>
<li class="mega-dropdown-li">
<ul class="mega-dropdown-ul mm-show">
<li class="dropdown-li"><a class="dropdown-link" href="match-schedule.html">Match
Schedule</a>
</li>
<li class="dropdown-li"><a class="dropdown-link" href="match-result.html">Match
Result</a>
</li>
<li class="dropdown-li"><a class="dropdown-link" href="league-standings.html">Point Table</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="has-dropdown firstlvl">
<a class="mm-link" href="index.html">Shop <i class="rt-angle-down"></i></a>
<ul class="sub-menu">
<li><a href="shop.html">Shop</a></li>
<li><a href="product-details.html">Product Details</a></li>
<li><a href="cart.html">cart</a></li>
<li><a href="checkout.html">Checkout</a></li>
<li><a href="account.html">My Account</a></li>
<li><a href="thank-you.html">Thank You</a></li>
</ul>
</li>
<li class="has-dropdown firstlvl">
<a class="mm-link" href="news-details.html">News <i class="rt-angle-down"></i></a>
<ul class="sub-menu">
<li><a href="blog.html">News</a></li>
<li><a href="blog-details.html">News Details</a></li>
</ul>
</li>
<li><a class="mm-link" href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- side-mobile-menu end -->
<div class="side-bar-social-links">
<a href="#0" class="platform"><i class="fab fa-facebook-f"></i></a>
<a href="#0" class="platform"><i class="fab fa-twitter"></i></a>
<a href="#0" class="platform"><i class="fab fa-behance"></i></a>
<a href="#0" class="platform"><i class="fab fa-youtube"></i></a>
</div>
</aside>
<!--================= Slide Bar Start Here =================-->
<!--================= Banner Section Start Here =================-->
<div class="banner banner1">
<div class="inner-page-banner banner-bg">
<div class="container">
<div class="banner-content">
<div class="page-path">
<ul>
<li><a class="home-page-link" href="index.html">Home</a></li>
<li><a class="current-page" href="#">NEWS DETAILS</a></li>
</ul>
</div>
<h1 class="banner-heading">NEWS DETAILS</h1>
</div>
</div>
</div>
</div>
<!--================= Banner Section End Here =================-->
</header>
<!--================= Header Section End Here =================-->
<!--Blog Details area start-->
<section class="rts-blog-details news-feed-section section-gap">
<div class="container">
<div class="row">
<div class="col-xl-8 left-news-col">
<div class="blog-details news-left2">
<div class="news-top">
<div class="icon-text">
<span class="viewers fs-10"><a href="#"><i class="fas fa-eye"></i> 100 Views</a></span>
<span class="comment fs-10"><a href="#"><i class="fas fa-comments"></i> 30
Comments</a></span>
<span class="date fs-10"><a href="#"><i class="fas fa-calendar-alt"></i> 24th March
2023</a></span>
</div>
<p class="description">
A great commerce experience cannot be distilled to a single number. It’s not a
Lighthouse score, or a set of Core Web Vitals figures, although both are important
inputs. A great commerce experience is a trilemma that carefully balances competing
needs of delivering great customer experience, dynamic storefront capabilities, and
long-term business — conversion, retention, re-engagement — objectives. As developers,
we rightfully obsess about the customer experience, relentlessly working to squeeze
every millisecond out of the critical rendering path, optimize input latency, and
eliminate jank. At the limit, statically generated, edge delivered, and HTML-first pages
look like the optimal strategy. That is until you are confronted with the realization
that the next step function in improving conversion rates and business.
</p>
<div class="image-section">
<div class="blog-image"><img src="assets/images/blog/blogimage.jpg" alt="blog-image">
</div>
</div>
<h2 class="blog-point-text">A CLEANSING HOT SHOWER OR BATH</h2>
<p class="description">
The journey, often, starts “simple” with localization. But then, quickly advances to
contextual pricing, juggling complexity of large and frequently updated product catalog,
managing continuously running multivariate tests and promotion campaigns, and serving
customer-tailored dynamic recommendations. Eventually, you reach a realization that
every page is similar to an open Tetris board where each “slot” can and should be
dynamically tailored by dynamic visitor preferences, all powered by an ever-growing set
of dynamic business rules.
</p>
</div>
<div class="blog-part blog-part2 part-gap">
<h2 class="blog-point-text">SETTING THE MOOD WITH INCENSE</h2>
<div class="flex-wrapper">
<div class="blog-part-image"><img src="assets/images/blog/blogpart.jpg"
alt="blog-part-image"></div>
<p class="description">From connecting back-office operations to front-of-the-house A/B
testing and dynamic
personalization for each customer, the shared foundation is fast
server-side rendering powered by fast storefront data access. On top of this
foundation, we add layers of caching, prerendering and edge delivery
optimizations — not the other way around.</p>
</div>
</div>
<div class="blog-quote-box part-gap">
<div class="author-box">
<div class="quote-icon"><img src="assets/images/icons/quote-round.svg" alt="quote-icon"></div>
<div class="author">
<span class="blog-author">ROSALINA D. WILLIAM</span>
<span class="role">FOUNDER</span>
</div>
</div>
<h3 class="blog-quote">Choices to take a holiday and travelling out inthis pandemic situation are limited. Why not take a stay action on quality.</h3>
</div>
<p class="description">
Surveying the existing landscape of available developer tools and runtimes, we felt that
there is a gap. Enabling dynamic commerce requires close integration between server and
client, an optimized streaming and data fetch strategy, and a production platform that
operates at scale. These are hard technical problems that Shopify can help solve and this is
why we’ve been hard at work on the Hydrogen framework. It’s a React-based framework
optimized for commerce and specialized to be powered by Shopify APIs and infrastructure: The
future of commerce is dynamic and personalized.
</p>
<div class="bottom-area">
<div class="blog-actions part-gap">
<div class="tag-area">
<h3>RELATED TAGS</h3>
<div class="button-tag">
<ul>
<li><a href="#">POPULAR</a></li>
<li><a href="#">DESIGN</a></li>
<li><a href="#">UX</a></li>
</ul>
</div>
</div>
<div class="social-area">
<div class="social-title">
<h3>SOCIAL SHARE</h3>
</div>
<div class="social-icon">
<ul>
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-behance"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
<li><a href="#"><i class="fab fa-tumblr"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="post-area part-gap mb--50">
<div class="row align-items-center justify-content-between">
<div class="col-lg-4 col-sm-4 col-12 text-start">
<div class="previous-post quick-post">
<div class="post-text">
<h3 class="sub-title">Prev Post</h3>
<h2 class="sect-title"><a href="#">TIPS ON MINIMALIST</a></h2>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 text-sm-center text-center">
<div class="icon-area">
<a href="#"><img src="assets/images/icons/grid-shape.svg" alt="img"></a>
</div>
</div>
<div
class="col-lg-4 col-sm-4 col-12 text-sm-end text-start justify-content-sm-end justify-content-start">
<div class="next-post quick-post">
<div class="post-text">
<h3 class="sub-title">Next Post</h3>
<h2 class="sect-title"><a href="#">LESS IS MORE</a></h2>
</div>
</div>
</div>
</div>
</div>
<div class="blog-author-box part-gap">
<div class="author-dp"><img src="assets/images/blog/authordp.jpg" alt="author-dp"></div>
<div class="content">
<span>Written by</span>
<h2 class="author-name">ROSALINA D. WILLIAM</h2>
<p class="author-description">Getting fast initial render with streaming server-side
rendering, efficient
component-level updates and state transitions, while also setting up a
performant loading and bundling strategy.</p>
</div>
</div>
<div class="comment-header">
<div class="comment">
<h3>03 COMMENT</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="comment-section first-child">
<div class="comment-text">
<div class="commentator">
<a href="#"><img src="assets/images/items/user1.png"
alt="commentator"></a>
</div>
<div class="text">
<div class="section-title">
<div class="title">
<h2 class="sub-title">ROSALINA KELIAN</h2>
<span class="sect-title"><a href="#"><i
class="fas fa-calendar-alt"></i>
24th
March
2023</a></span>
</div>
<div class="button">
<a href="#"><i class="fas fa-reply"></i> Reply</a>
</div>
</div>
<p class="description">But that's not all. Not to be outdone, individual
sellers
have increasingly engaged in e-commerce transactions via their own
personal
websites. And digital marketplaces such as eBay or Etsy serve as
exchanges
where multitudes of buyers and sellers come together to conduct
business.
commerce has changed the way people shop and consume products and
services.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-10">
<div class="comment-section">
<div class="comment-text">
<div class="commentator">
<a href="#"><img src="assets/images/items/user2.png"
alt="commentator"></a>
</div>
<div class="text">
<div class="section-title">
<div class="title">
<h2 class="sub-title">ALONSO WILLIAM</h2>
<span class="sect-title"><a href="#"><i
class="fas fa-calendar-alt"></i>
24th
March
2023</a></span>
</div>
<div class="button">
<a href="#"><i class="fas fa-reply"></i> Reply</a>
</div>
</div>
<p class="description">Ecommerce has changed the way people shop and
consume products and services. More and more people are turning to
their computers and smart devices to order goods, which can easily
be delivered to their homes. As such, it has disrupted the retail
landscape. Amazon and Alibaba have gained considerable popularity.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="comment-section">
<div class="comment-text">
<div class="commentator">
<a href="#"><img src="assets/images/items/user3.png"
alt="commentator"></a>
</div>
<div class="text">
<div class="section-title">
<div class="title">
<h2 class="sub-title">MIRANDA HALIM</h2>
<span class="sect-title"><a href="#"><i
class="fas fa-calendar-alt"></i>
24th
March
2023</a></span>
</div>
<div class="button">
<a href="#"><i class="fas fa-reply"></i> Reply</a>
</div>
</div>
<p class="description">commerce has changed the way people shop and
consume products and services. More and more people are turning to
their computers and smart devices to order goods, which can easily
be delivered to their homes. As such, it has disrupted the retail
landscape. Amazon and Alibaba have gained considerable popularity
</p>
</div>
</div>
</div>
</div>
</div>
<div class="comment-form mb-10">
<div class="contact-form">
<div class="input-box text-input mb-20">
<textarea name="Message" id="validationDefault01" cols="30" rows="10"
placeholder="Type Your Comments..." required></textarea>
</div>
<div class="input-box name-input mb-20">
<input type="text" id="validationDefault02" placeholder="Type Your Name..."
required>
</div>
<div class="input-box mail-input mb-20">
<input type="text" id="validationDefault03" placeholder="Type Your E-mail..."
required>
</div>
<div class="input-box sub-input mb-30">
<input type="text" id="validationDefault04" placeholder="Type Your Website..."
required>
</div>
<button class="form-btn form-btn4">GIVE COMMENT <i
class="fal fa-long-arrow-right"></i></button>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-4">
<div class="news-right-widget">
<div class="widget widget-search mb-40">
<div class="widget-title-box pb-25 mb-30">
<h4 class="widget-sub-title2 fs-20">Search Here</h4>
</div>
<form class="subscribe-form mb-10" action="#">
<input type="text" placeholder="Keyword...">
<button class="widget-btn"><i class="far fa-search"></i></button>
</form>
</div>
<div class="widget widget-post mb-40">
<div class="widget-title-box pb-25 mb-30">
<h4 class="widget-sub-title2 fs-20">Popular Feeds</h4>
</div>
<ul class="post-list">
<li>
<div class="blog-post mb-30">
<a href="news-details.html"><img src="assets/images/blog/quickblog1.jpg"
alt="Post Img"></a>
<div class="post-content">
<h6 class="mb-10"><a href="news-details.html">Having education in
an area helps</a></h6>
<span class="fs-14"><i class="fas fa-calendar-alt"></i> 24th March
2023</span>
</div>
</div>
</li>
<li>
<div class="blog-post mb-30">
<a href="news-details.html"><img src="assets/images/blog/quickblog2.png"
alt="Post Img"></a>
<div class="post-content">
<h6 class="mb-10"><a href="news-details.html">People think, feel, &
behave in a way</a></h6>
<span class="fs-14"><i class="fas fa-calendar-alt"></i> 24th March
2023</span>
</div>
</div>
</li>
<li>
<div class="blog-post mb-30">
<a href="news-details.html"><img src="assets/images/blog/quickblog3.png"
alt="Post Img"></a>
<div class="post-content">
<h6 class="mb-10"><a href="news-details.html">That contributes to
their success</a></h6>
<span class="fs-14"><i class="fas fa-calendar-alt"></i> 24th March
2023</span>
</div>
</div>
</li>
</ul>
</div>
<div class="widget widget-categories-list mb-40">
<div class="widget-title-box pb-25 mb-30">
<h4 class="widget-sub-title2 fs-20">Categories</h4>
</div>
<ul class="list-none">
<li><a href="#"><i class="fal fa-angle-right"></i> Business <span
class="f-right">26</span></a></li>
<li><a href="#"><i class="fal fa-angle-right"></i> Consultant <span
class="f-right">30</span></a></li>
<li><a href="#"><i class="fal fa-angle-right"></i> Creative <span
class="f-right">71</span></a></li>
<li><a href="#"><i class="fal fa-angle-right"></i> UI/UX <span
class="f-right">56</span></a></li>
<li><a href="#"><i class="fal fa-angle-right"></i> Technologys <span
class="f-right">60</span></a></li>
</ul>
</div>
<div class="widget widget-categories-tag mb-40">
<div class="widget-title-box pb-25 mb-25">
<h4 class="widget-sub-title2 fs-20">TAGS</h4>
</div>
<div class="tag-list">
<a href="#">Popular</a>
<a href="#">Design</a>
<a href="#">UX</a>
<a href="#">Usability</a>
<a href="#">Develop</a>
<a href="#">Icon</a>
<a href="#">Business</a>
<a href="#">Consult</a>
<a href="#">Kit</a>
<a href="#">Keyboard</a>
<a href="#">Mouse</a>
<a href="#">Tech</a>
</div>
</div>
<div class="widget widget-sponsors-ad">
<div class="widget-title-box pb-25 mb-25">
<h4 class="widget-sub-title2 fs-20">SPONSOR ADS</h4>
</div>
<a href="#">
<div class="ad-thumb"><img src="assets/images/blog/sponsorsad.jpg" alt="sponsorad">
</div>
<span class="ad-tag">270X240</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Blog Details Area end-->
<!--================= Footer Start Here =================-->
<div class="footer footer1 inner">
<div class="container">
<div class="footer-inner">
<div class="row">
<div class="col-xl-3 col-md-6">
<div class="footer-widget">
<div class="footer-logo"><img src="assets/images/logo.png" alt="footer-logo">
</div>
<p class="footer-text">It was the end of a period in the 1980s
in which it seemed like every NBA Finals
matchup featured the Celtics sports club.</p>
<div class="social-links">
<a href="#0" class="platform"><i
class="fab fa-facebook-f"></i></a>
<a href="#0" class="platform"><i
class="fab fa-twitter"></i></a>
<a href="#0" class="platform"><i
class="fab fa-behance"></i></a>
<a href="#0" class="platform"><i
class="fab fa-youtube"></i></a>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 col-sm-6">
<div class="footer-widget">
<h3 class="footer-widget-title"><span class="decorator"></span> ESSENTIAL LINKS</h3>
<ul class="widget-items cata-widget">
<li class="widget-list-item"><a href="about.html">ABOUT CLUB</a></li>
<li class="widget-list-item"><a href="contact.html">CONTACTS</a></li>
<li class="widget-list-item"><a href="price-table.html">PRICE TABLE</a></li>
<li class="widget-list-item"><a href="shop.html">SHOP</a></li>
<li class="widget-list-item"><a href="our-players.html">OUR PLAYERS</a></li>
<li class="widget-list-item"><a href="arena.html">ARENA</a></li>
<li class="widget-list-item"><a href="team-details.html">MEDIA & KIT</a></li>
<li class="widget-list-item"><a href="history.html">OUR HISTORY</a></li>
<li class="widget-list-item"><a href="gallery.html">TROPHY ROOM</a></li>
<li class="widget-list-item"><a href="awards.html">SHORT CODE</a></li>
</ul>
</div>
</div>
<div class="col-xl-3 col-md-6">
<div class="footer-widget address-widget">
<h3 class="footer-widget-title"><span class="decorator"></span> GET IN TOUCH</h3>
<ul>
<li class="widget-list-item"><i class="fas fa-envelope-open"></i><a
href="mailto:info@webmail.com">INFO@WEBMAIL.COM</a></li>
<li class="widget-list-item"><i class="fas fa-phone"></i><a href="tel:09877788890">098
777
888 90</a></li>
<li class="widget-list-item"><i class="fas fa-map-marker-alt"></i> <span>USA, CALIFORNIA
20,
FIRST <br>
AVENUE, CALIFORNIA</span></li>
</ul>
</div>
</div>
<div class="col-xl-3 col-md-6">
<div class="footer-widget news-widget">
<h3 class="footer-widget-title"><span class="decorator"></span> POST GALLERY</h3>
<div class="recent-post">
<div class="picture">
<a href="blog-details.html">
<img src="assets/images/footer/news1.png" alt="side-post-image">
</a>
</div>
<div class="picture">
<a href="blog-details.html">
<img src="assets/images/footer/news2.png" alt="side-post-image">
</a>
</div>
<div class="picture">
<a href="blog-details.html">
<img src="assets/images/footer/news3.png" alt="side-post-image">
</a>
</div>
</div>
<div class="recent-post post2">
<div class="picture">
<a href="blog-details.html">
<img src="assets/images/footer/news4.png" alt="side-post-image">
</a>
</div>
<div class="picture">
<a href="blog-details.html">
<img src="assets/images/footer/news5.png" alt="side-post-image">
</a>
</div>
<div class="picture">
<a href="blog-details.html">
<img src="assets/images/footer/news6.png" alt="side-post-image">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-bottom-area inner">
<div class="container">
<div class="bottom-area-inner">
<span class="copyright">COPYRIGHT & DESIGN by <a href="http://www.bootstrapMB.com">bootstrapMB</a> - 2023</span>
<div class="footer-bottom-links">
<a href="#">TERMS & CONDITONS</a>
<a href="faq.html">FAQ</a>
<a href="#">CAREER</a>
</div>
</div>
</div>
</div>
</div>
<!--================= Footer End Here =================-->
<!--================= Scroll to Top Start =================-->
<div class="scroll-top-btn scroll-top-btn1"><i class="fas fa-angle-up arrow-up"></i><i
class="fas fa-circle-notch"></i></div>
<!--================= Scroll to Top End =================-->
<!--================= Jquery latest version =================-->
<script src="assets/js/vendors/jquery-3.6.0.min.js"></script>
<!--================= Bootstrap latest version =================-->
<script src="assets/js/vendors/bootstrap.min.js"></script>
<!--================= Wow.js =================-->
<script src="assets/js/vendors/wow.min.js"></script>
<!--================= Swiper Slider =================-->
<script src="assets/js/vendors/swiper-bundle.min.js"></script>
<!--================= Zoom Plugin =================-->
<!--================= metisMenu Plugin =================-->
<script src="assets/js/vendors/metisMenu.min.js"></script>
<!--================= Main Menu Plugin =================-->
<!--================= Mobile Menu Plugin =================-->
<script src="assets/js/vendors/metisMenu.min.js"></script>
<!--================= Magnefic Popup Plugin =================-->
<script src="assets/js/vendors/isotope.pkgd.min.js"></script>
<!--================= Magnefic Popup Plugin =================-->
<script src="assets/js/vendors/jquery.magnific-popup.min.js"></script>
<!--================= Main Script =================-->
<script src="assets/js/main.js"></script>
</body>
</html>