-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.php
53 lines (44 loc) · 1.71 KB
/
shop.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
<?php
include './layouts/header.php';
?>
<!-- ================= SHOP ==============-->
<section class="shop section container">
<h2 class="breadcrumb__title">Boutique</h2>
<h3 class="breadcrumb__subtitle">Accueil > <span>Boutique</span></h3>
<div class="shop__container grid">
<div class="sidebar">
<h3 class="filter__title">Choisir les Filtres</h3>
<div class="filter__content">
<h3 class="filter__subtitle">Condition</h3>
<div class="filter">
<input type="checkbox" name="" id="">
<p>Nouveau <span>(13)</span></p>
</div>
<div class="filter">
<input type="checkbox" name="" id="">
<p>Vendu <span>(13)</span></p>
</div>
</div>
<div class="filter__content">
<h3 class="filter__subtitle">Size</h3>
<div class="filter">
<input type="checkbox" name="" id="">
<p>s <span>(13)</span></p>
</div>
<div class="filter">
<input type="checkbox" name="" id="">
<p>M <span>(15)</span></p>
</div>
<div class="filter">
<input type="checkbox" name="" id="">
<p>L <span>(5)</span></p>
</div>
</div>
</div>
<div class="shop__items grid">
</div>
</div>
</section>
<?php
include './layouts/footer.php';
?>