-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
872 lines (712 loc) · 28.6 KB
/
index.php
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
<?php
include_once('./includes/headerNav.php');
// Get all banner products
$banner_products = get_banner_details();
// Get all category bar products
$catgeory_bar_products = get_category_bar_products();
// Get categories
$categories = get_categories();
$clothes = get_clothes_category();
$footwears = get_footwear_category();
$jewelries = get_jewelry_category();
$perfumes = get_perfume_category();
$cosmetics = get_cosmetics_category();
$glasses = get_glasses_category();
$bags = get_bags_category();
// Get all new arrivals
$new_arrivals1 = get_new_arrivals();
$new_arrivals2 = get_new_arrivals();
// Get trending products
$trending_products1 = get_trending_products();
$trending_products2 = get_trending_products();
// Get top rated products
$top_rated_products1 = get_top_rated_products();
$top_rated_products2 = get_top_rated_products();
?>
<div class="overlay" data-overlay></div>
<!--
- MODAL
-->
<!--
- NOTIFICATION TOAST
-->
<div class="notification-toast" data-toast>
<button class="toast-close-btn" data-toast-close>
<ion-icon name="close-outline"></ion-icon>
</button>
<div class="toast-banner">
<img src="./admin/upload/watch-2.jpg" alt="Smart Watch" width="80" height="70" />
</div>
<div class="toast-detail">
<p class="toast-message">Someone in new just bought</p>
<p class="toast-title">Smart Watch</p>
<p class="toast-meta"><time datetime="PT2M">2 Minutes</time> ago</p>
</div>
</div>
<!--
- HEADER
-->
<header>
<!-- top head action, search etc in php -->
<!-- inc/topheadactions.php -->
<?php require_once './includes/topheadactions.php'; ?>
<!-- desktop navigation -->
<!-- inc/desktopnav.php -->
<?php require_once './includes/desktopnav.php' ?>
<!-- mobile nav in php -->
<!-- inc/mobilenav.php -->
<?php require_once './includes/mobilenav.php'; ?>
</header>
<!--
- MAIN
-->
<main>
<!--
- BANNER: Coursal
-->
<div class="banner">
<div class="container">
<div class="slider-container has-scrollbar">
<!-- Display data from db in banner -->
<?php
while ($row = mysqli_fetch_assoc($banner_products)) {
?>
<div class="slider-item">
<img src="images/carousel/<?php
echo $row['banner_image'];
?>" alt="women's latest fashion sale" class="banner-img" />
<div class="banner-content">
<p class="banner-subtitle">
<?php
echo $row['banner_subtitle'];
?>
</p>
<h2 class="banner-title">
<?php
echo $row['banner_title'];
?>
</h2>
<p class="banner-text">starting at $
<b><?php echo $row['banner_items_price']; ?></b>.00
</p>
<a href="#" class="banner-btn">Shop now</a>
</div>
</div>
<?php
}
?>
<!-- -->
</div>
</div>
</div>
<!--
- CATEGORY: Bar
-->
<div class="category">
<div class="container">
<div class="category-item-container has-scrollbar">
<!-- -->
<?php
while ($row = mysqli_fetch_assoc($catgeory_bar_products)) {
?>
<div class="category-item">
<div class="category-img-box">
<img src="./images/icons/<?php echo $row['category_img'] ?>" alt="category bar img" width="30" />
</div>
<div class="category-content-box">
<div class="category-content-flex">
<h3 class="category-item-title"><?php echo $row['category_title'] ?></h3>
<p class="category-item-amount">(<?php echo $row['category_quantity'] ?>)</p>
</div>
<!-- updated it. set to form and will send data to search page -->
<form class="search-form" method="post" action="./search.php">
<input type="hidden" name="search" value="<?php echo $row['category_title'] ?>" />
<button type="submit" name="submit" class="sidebar-submenu-title">
<p class="category-btn">
Show all
</p>
</button>
</form>
</div>
</div>
<?php
}
?>
<!-- -->
</div>
</div>
</div>
<!--
- PRODUCT
-->
<div class="product-container">
<div class="container">
<!--
- SIDEBAR
-->
<!-- adding side bar php page -->
<?php require_once './includes/categorysidebar.php' ?>
<div class="product-box">
<!--
- PRODUCT MINIMAL
-->
<div class="product-minimal">
<div class="product-showcase">
<h2 class="title">New Arrivals</h2>
<div class="showcase-wrapper has-scrollbar">
<!-- new arrival container 1 -->
<div class="showcase-container">
<!-- get element from table with id less than 4 -->
<?php
$itemID;
$counter = 0;
while ($row1 = mysqli_fetch_assoc($new_arrivals1)) {
// prints 4 items and then break out
if ($counter == 4) {
break;
}
?>
<div class="showcase">
<a href="./viewdetail.php?id=<?php echo $row1['product_id'] ?>&category=<?php echo $row1['category_id'] ?>" class="showcase-img-box">
<img src="./admin/upload/<?php echo $row1['product_img']; ?>" alt="relaxed short full sleeve t-shirt" width="70" class="showcase-img" />
</a>
<div class="showcase-content">
<a href="./viewdetail.php?id=<?php echo $row1['product_id'] ?>&category=<?php echo $row1['category_id'] ?>">
<h4 class="showcase-title">
<?php echo $row1['product_title']; ?>
</h4>
</a>
<a href="./viewdetail.php?id=<?php echo $row1['product_id'] ?>&category=<?php echo $row1['category_id'] ?>" class="showcase-category">
<?php echo "New Arrival!"; ?>
</a>
<div class="price-box">
<p class="price">$<?php echo $row1['discounted_price']; ?></p>
<del>$<?php echo $row1['product_price']; ?></del>
</div>
</div>
</div>
<?php
$itemID = $row1['product_id'];
$counter += 1;
}
?>
</div>
<!-- -->
<!-- new arrival container 2 -->
<div class="showcase-container">
<!-- get element from table with id greaer than 4 -->
<?php
// $itemID = 4;
$counter = 0;
while ($row2 = mysqli_fetch_assoc($new_arrivals2)) {
// breaks after printing 4 items
if ($counter == 4) {
break;
}
if ($row2['product_id'] > $itemID) {
?>
<div class="showcase">
<a href="./viewdetail.php?id=<?php echo $row2['product_id'] ?>&category=<?php echo $row2['category_id'] ?>" class="showcase-img-box">
<img src="./admin/upload/<?php echo $row2['product_img']; ?>" alt="men yarn fleece full-zip jacket" class="showcase-img" width="70" />
</a>
<div class="showcase-content">
<a href="./viewdetail.php?id=<?php echo $row2['product_id'] ?>&category=<?php echo $row2['category_id'] ?>">
<h4 class="showcase-title">
<?php echo $row2['product_title']; ?>
</h4>
</a>
<a href="./viewdetail.php?id=<?php echo $row2['product_id'] ?>&category=<?php echo $row2['category_id'] ?>" class="showcase-category">
<?php echo "New Arrival!"; ?>
</a>
<div class="price-box">
<p class="price">
$<?php echo $row2['discounted_price']; ?>
</p>
<del>
$<?php echo $row2['product_price']; ?>
</del>
</div>
</div>
</div>
<?php
$counter += 1;
}
}
?>
<!-- -->
</div>
</div>
</div>
<!-- Trending Items -->
<div class="product-showcase">
<h2 class="title">Trending</h2>
<div class="showcase-wrapper has-scrollbar">
<!-- get data from trending table in db -->
<!-- trending container 1 -->
<div class="showcase-container">
<!-- get element from table with id less than 4 -->
<?php
$itemID;
$counter = 0;
while ($row1 = mysqli_fetch_assoc($trending_products1)) {
// prints 4 items and then break out
if ($counter == 4) {
break;
}
?>
<div class="showcase">
<a href="./viewdetail.php?id=<?php echo $row1['product_id'] ?>&category=<?php echo $row1['category_id'] ?>" class="showcase-img-box">
<img src="./admin/upload/<?php echo $row1['product_img']; ?>" alt="Treding products image" width="70" class="showcase-img" />
</a>
<div class="showcase-content">
<a href="./viewdetail.php?id=<?php echo $row1['product_id'] ?>&category=<?php echo $row1['category_id'] ?>">
<h4 class="showcase-title">
<?php echo $row1['product_title']; ?>
</h4>
</a>
<a href="./viewdetail.php?id=<?php echo $row1['product_id'] ?>&category=<?php echo $row1['category_id'] ?>" class="showcase-category">
<?php echo "Trending Now!"; ?>
</a>
<div class="price-box">
<p class="price">$<?php echo $row1['discounted_price']; ?></p>
<del>$<?php echo $row1['product_price']; ?></del>
</div>
</div>
</div>
<?php
$itemID = $row1['product_id'];
$counter += 1;
}
?>
</div>
<!-- trending container 2 -->
<div class="showcase-container">
<!-- get element from table with id greaer than 4 -->
<?php
// $itemID = 4;
$counter = 0;
while ($row2 = mysqli_fetch_assoc($trending_products2)) {
// breaks after printing 4 items
if ($counter == 4) {
break;
}
if ($row2['product_id'] > $itemID) {
?>
<div class="showcase">
<a href="./viewdetail.php?id=<?php echo $row2['product_id'] ?>&category=<?php echo $row2['category_id'] ?>" class="showcase-img-box">
<img src="./admin/upload/<?php echo $row2['product_img']; ?>" alt="trending product image" class="showcase-img" width="70" />
</a>
<div class="showcase-content">
<a href="./viewdetail.php?id=<?php echo $row2['product_id'] ?>&category=<?php echo $row2['category_id'] ?>">
<h4 class="showcase-title">
<?php echo $row2['product_title']; ?>
</h4>
</a>
<a href="./viewdetail.php?id=<?php echo $row2['product_id'] ?>&category=<?php echo $row2['category_id'] ?>" class="showcase-category">
<?php echo "Trending Now!"; ?>
</a>
<div class="price-box">
<p class="price">
$<?php echo $row2['discounted_price']; ?>
</p>
<del>
$<?php echo $row2['product_price']; ?>
</del>
</div>
</div>
</div>
<?php
$counter += 1;
}
}
?>
<!-- -->
</div>
<!-- -->
</div>
</div>
<div class="product-showcase">
<h2 class="title">Top Rated</h2>
<!-- Load data from top rated table -->
<div class="showcase-wrapper has-scrollbar">
<!-- top rated container 1 -->
<div class="showcase-container">
<!-- get element from table with id less than 4 -->
<?php
$itemID;
$counter = 0;
while ($row1 = mysqli_fetch_assoc($top_rated_products1)) {
// prints 4 items and then break out
if ($counter == 4) {
break;
}
?>
<div class="showcase">
<a href="./viewdetail.php?id=<?php echo $row1['product_id'] ?>&category=<?php echo $row1['category_id'] ?>" class="showcase-img-box">
<img src="./admin/upload/<?php echo $row1['product_img']; ?>" alt="relaxed short full sleeve t-shirt" width="70" class="showcase-img" />
</a>
<div class="showcase-content">
<a href="./viewdetail.php?id=<?php echo $row1['product_id'] ?>&category=<?php echo $row1['category_id'] ?>">
<h4 class="showcase-title">
<?php echo $row1['product_title']; ?>
</h4>
</a>
<a href="./viewdetail.php?id=<?php echo $row1['product_id'] ?>&category=<?php echo $row1['category_id'] ?>" class="showcase-category">
<?php echo "Top Rated!"; ?>
</a>
<div class="price-box">
<p class="price">$<?php echo $row1['discounted_price']; ?></p>
<del>$<?php echo $row1['product_price']; ?></del>
</div>
</div>
</div>
<?php
$itemID = $row1['product_id'];
$counter += 1;
}
?>
</div>
<!-- top rated conatiner 2 -->
<div class="showcase-container">
<!-- get element from table with id greaer than 4 -->
<?php
// $itemID = 4;
$counter = 0;
while ($row2 = mysqli_fetch_assoc($top_rated_products2)) {
// breaks after printing 4 items
if ($counter == 4) {
break;
}
if ($row2['product_id'] > $itemID) {
?>
<div class="showcase">
<a href="./viewdetail.php?id=<?php echo $row2['product_id'] ?>&category=<?php echo $row2['category_id'] ?>" class="showcase-img-box">
<img src="./admin/upload/<?php echo $row2['product_img']; ?>" alt="trending product image" class="showcase-img" width="70" />
</a>
<div class="showcase-content">
<a href="./viewdetail.php?id=<?php echo $row2['product_id'] ?>&category=<?php echo $row2['category_id'] ?>">
<h4 class="showcase-title">
<?php echo $row2['product_title']; ?>
</h4>
</a>
<a href="./viewdetail.php?id=<?php echo $row2['product_id'] ?>&category=<?php echo $row2['category_id'] ?>" class="showcase-category">
<?php echo "Top Rated!"; ?>
</a>
<div class="price-box">
<p class="price">
$<?php echo $row2['discounted_price']; ?>
</p>
<del>
$<?php echo $row2['product_price']; ?>
</del>
</div>
</div>
</div>
<?php
$counter += 1;
}
}
?>
<!-- -->
</div>
<!-- -->
</div>
</div>
</div>
<!--
- PRODUCT FEATURED
-->
<?php require_once './includes/dealoftheday.php' ?>
<!--
- PRODUCT GRID
-->
<div class="product-main">
<h2 class="title">New Products</h2>
<div class="product-grid">
<!-- display data from table new products -->
<?php
//this will dynamically fetch data from a database and show all the post from mysql
//and this will auto create product div as per no of post available in database
/* define how much data to show in a page from database*/
$limit = 8;
if(isset($_GET['page'])){
$page = $_GET['page'];
}else{
$page = 1;
}
//define from which row to start extracting data from database
$offset = ($page - 1) * $limit;
$product_left = array();
$new_product_counter = 1;
$new_products_result = get_new_products($offset, $limit);
if($new_products_result->num_rows > 0){
while ($row = mysqli_fetch_assoc($new_products_result)) {
?>
<div class="showcase">
<div class="showcase-banner">
<img src="./admin/upload/<?php
echo $row['product_img']
?>" alt="Mens Winter Leathers Jackets" width="300" class="product-img default" />
<img src="./admin/upload/<?php
echo $row['product_img']
?>" alt="Mens Winter Leathers Jackets" width="300" class="product-img hover" />
<!-- Applying coditions on dicount and sale tags -->
<!-- -->
<?php
if ($new_product_counter == 1) {
?>
<p class="showcase-badge">15%</p>
<?php
}
?>
<!-- -->
<?php
if ($new_product_counter == 3) {
?>
<p class="showcase-badge angle black">sale</p>
<?php
}
?>
</div>
<div class="showcase-content">
<a href="./viewdetail.php?id=<?php
echo $row['product_id']
?>&category=<?php
echo $row['category_id']
?>" class="showcase-category">
<?php echo $row['product_title'] ?>
</a>
<a href="./viewdetail.php?id=<?php
echo $row['product_id']
?>&category=<?php
echo $row['category_id']
?>">
<h3 class="showcase-title">
<?php echo $row['product_desc'] ?>
</h3>
</a>
<div class="showcase-rating">
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
</div>
<div class="price-box">
<p class="price">
$<?php echo $row['discounted_price'] ?>
</p>
<del>
$<?php echo $row['product_price'] ?>
</del>
</div>
</div>
</div>
<?php
$new_product_counter = $new_product_counter + 1;
}
}else {
echo "No Results Found"; }
$conn->close();
?>
<!-- -->
</div>
</div>
<!-- pagination start -->
<!--Pagination-->
<?php
include "includes/config.php";
// Pagination btn using php with active effects
$sql1 = "SELECT * FROM products";
$result1 = mysqli_query($conn, $sql1) or die("Query Failed.");
if(mysqli_num_rows($result1) > 0){
$total_products = mysqli_num_rows($result1);
$total_page = ceil($total_products / $limit);
?>
<nav class="main-pagination" style="margin-left: 10px;">
<ul class="pagination-ul">
<?php
for($i=1; $i<=$total_page; $i++){
//important this is for active effects that denote in which page you are in current position
if ($page==$i) {
$active = "page-active";
} else {
$active = "";
}
?>
<li class="page-item-number <?php echo $active; // page number ?>">
<a class="page-number-link " href="index.php?page=<?php echo $i; // page number ?>">
<?php echo $i; // page number ?>
</a>
</li>
<?php }} ?>
</ul>
</nav>
<!-- pagination end -->
</div>
</div>
</div>
<!--
- TESTIMONIALS, CTA & SERVICE
-->
<div>
<div class="container">
<div class="testimonials-box">
<!--
- TESTIMONIALS
-->
<div class="testimonial">
<h2 class="title">testimonial</h2>
<div class="testimonial-card">
<img src="./images/testimonial-1 copy.jpg" alt="alan doe" class="testimonial-banner" width="80" height="80" />
<p class="testimonial-name">IQSF</p>
<p class="testimonial-title">CEO & Founder Invision</p>
<img src="./images/icons/quotes.svg" alt="quotation" class="quotation-img" width="26" />
<p class="testimonial-desc">
You guys are the best! Keep up the great work!
</p>
</div>
</div>
<!--
- CTA
-->
<div class="cta-container">
<!-- -->
<img src="./images/cta-banner-sale.jpg" alt="summer collection" class="cta-banner" />
<a href="#" class="cta-content">
<p class="discount">25% Discount</p>
<h2 class="cta-title">Collection</h2>
<p class="cta-text">Starting $20</p>
<button class="cta-btn">Shop now</button>
</a>
</div>
<!--
- SERVICE
-->
<div class="service">
<h2 class="title">Our Services</h2>
<div class="service-container">
<a href="#" class="service-item">
<div class="service-icon">
<ion-icon name="boat-outline"></ion-icon>
</div>
<div class="service-content">
<h3 class="service-title">Worldwide Delivery</h3>
<p class="service-desc">For Order Over $100</p>
</div>
</a>
<a href="#" class="service-item">
<div class="service-icon">
<ion-icon name="rocket-outline"></ion-icon>
</div>
<div class="service-content">
<h3 class="service-title">Next Day delivery</h3>
<p class="service-desc">UK Orders Only</p>
</div>
</a>
<a href="#" class="service-item">
<div class="service-icon">
<ion-icon name="call-outline"></ion-icon>
</div>
<div class="service-content">
<h3 class="service-title">Best Online Support</h3>
<p class="service-desc">Hours: 8AM - 11PM</p>
</div>
</a>
<a href="#" class="service-item">
<div class="service-icon">
<ion-icon name="arrow-undo-outline"></ion-icon>
</div>
<div class="service-content">
<h3 class="service-title">Return Policy</h3>
<p class="service-desc">Easy & Free Return</p>
</div>
</a>
<a href="#" class="service-item">
<div class="service-icon">
<ion-icon name="ticket-outline"></ion-icon>
</div>
<div class="service-content">
<h3 class="service-title">30% money back</h3>
<p class="service-desc">For Order Over $100</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!--
- BLOG
-->
<!-- image path: ./images/blog/ -->
<div class="blog">
<div class="container">
<div class="blog-container has-scrollbar">
<div class="blog-card">
<a href="#">
<img src="./images/blog/blog-1.jpg" alt="Clothes Retail KPIs 2021 Guide for Clothes Executives" width="300" class="blog-banner" />
</a>
<div class="blog-content">
<a href="#" class="blog-category">Fashion</a>
<a href="#">
<h3 class="blog-title">
Clothes Retail KPIs 2021 Guide for Clothes Executives.
</h3>
</a>
<p class="blog-meta">
By <cite>Mr Admin</cite> /
<time datetime="2022-04-06">Apr 06, 2022</time>
</p>
</div>
</div>
<div class="blog-card">
<a href="#">
<img src="./images/blog/blog-2.jpg" alt="Curbside fashion Trends: How to Win the Pickup Battle." class="blog-banner" width="300" />
</a>
<div class="blog-content">
<a href="#" class="blog-category">Clothes</a>
<h3>
<a href="#" class="blog-title">Curbside fashion Trends: How to Win the Pickup Battle.</a>
</h3>
<p class="blog-meta">
By <cite>Mr Robin</cite> /
<time datetime="2022-01-18">Jan 18, 2022</time>
</p>
</div>
</div>
<div class="blog-card">
<a href="#">
<img src="./images/blog/blog-3.jpg" alt="EBT vendors: Claim Your Share of SNAP Online Revenue." class="blog-banner" width="300" />
</a>
<div class="blog-content">
<a href="#" class="blog-category">Shoes</a>
<h3>
<a href="#" class="blog-title">EBT vendors: Claim Your Share of SNAP Online Revenue.</a>
</h3>
<p class="blog-meta">
By <cite>Mr Selsa</cite> /
<time datetime="2022-02-10">Feb 10, 2022</time>
</p>
</div>
</div>
<div class="blog-card">
<a href="#">
<img src="./images/blog/blog-4.jpg" alt="Curbside fashion Trends: How to Win the Pickup Battle." class="blog-banner" width="300" />
</a>
<div class="blog-content">
<a href="#" class="blog-category">Electronics</a>
<h3>
<a href="#" class="blog-title">Curbside fashion Trends: How to Win the Pickup Battle.</a>
</h3>
<p class="blog-meta">
By <cite>Mr Pawar</cite> /
<time datetime="2022-03-15">Mar 15, 2022</time>
</p>
</div>
</div>
</div>
</div>
</div>
</main>
<?php require_once './includes/footer.php'; ?>