This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.php
108 lines (58 loc) · 1.7 KB
/
category.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
<?php
require($_SERVER['DOCUMENT_ROOT'] . "/athome/product/link.php");
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ATHome - Catégories</title>
<link rel="stylesheet" href="css/style.css"/>
<link rel="icon" type="image/png" href="res/icons/logo.ico" />
<script type="text/javascript" src="res/vendors/jquery.min.js"></script>
</head>
<body class="page-category">
<?php include('res/parts/nav.php'); ?>
<main class="block-main">
<div class="inner">
<div class="row">
<a href="#">
<div class="style" style="background-image: url(res/img/style_coloré.jpg);">
<div class="inner" style="background-color: rgba(62,39,35,0.33)">
<h1>style coloré</h1>
</div>
</div>
</a>
</div>
<div class="row">
<a href="#">
<div class="style" style="background-image: url(res/img/style_industriel.jpg);">
<div class="inner" style="background-color: rgba(173,20,87,0.33)">
<h1>style industriel</h1>
</div>
</div>
</a>
</div>
<div class="row">
<a href="#">
<div class="style" style="background-image: url(res/img/style_moderne.jpg);">
<div class="inner" style="background-color: rgba(0,0,0,0.33)">
<h1>style moderne</h1>
</div>
</div>
</a>
</div>
<div class="row">
<a href="#">
<div class="style" style="background-image: url(res/img/style_vintage.jpg);">
<div class="inner" style="background-color: rgba(38,166,154,0.33)">
<h1>style vintage</h1>
</div>
</div>
</a>
</div>
</div>
</main>
<?php include('res/parts/footer.php'); ?>
<script type="text/javascript" src="script/script.js"></script>
</body>
</html>