-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
77 lines (73 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<?php
include("./components/head.php")
?>
<body id="cont">
<div id="mainContainer" class="container-fluid">
<!-- HEADER -->
<?php
include("./components/header.php")
?>
<!-- CONTENT -->
<section id="home" class="container-fluid">
<!-- SLIDER -->
<div id="slider" class="col-12">
<div class="row container">
<h6 class="col-12">
Ordinateur - Windows
</h6>
<h1 class="col-12">
Nouvelle Arrivage ordinateur<br/> HP pour tous
</h1>
<h4>-25% sur toutes la gamme windows</h4>
</div>
</div>
</section>
<div class="row spacer"></div>
<div id="categoryGrid">
<div class="row">
<a href="./boutique.php?filtre=ordinateur" id="hommeCat" class="col-sm-6 col-md-4 no-clout">
<h3>Ordinateur</h3>
<h6>80+</h6>
<button class="btn btn-one">Voir tout</button>
</a>
<a href="./boutique.php?filtre=telephone" id="femmeCat" class="col-sm-6 col-md-4 no-clout">
<h3>Telephone</h3>
<h6>90+</h6>
<button class="btn btn-one">Voir tout</button>
</a>
<a href="./boutique.php?filtre=accessoire" id="accesoireCat" class="col-sm-6 col-md-4 no-clout">
<h3>Accessoire</h3>
<h6>250+</h6>
<button class="btn btn-one">Voir tout</button>
</a>
</div>
</div>
<div class="row spacer"></div>
<section id="productOverview" class="container">
<div class="row">
<h1 class="col-12">
Product Overview
</h1>
<div class="col-12" id="productCategory">
<breadcrumb>
<h6>Produit</h6>
<h6>></h6>
<h6>Tous</h6>
</breadcrumb>
</div>
<div class="col-12">
<?php
include("./components/product_grid_limit.php");
?>
</div>
</div>
</section>
<div class="row spacer"></div>
<?php
include("./components/footer.php")
?>
</div>
</body>
</html>