-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.php
executable file
·42 lines (38 loc) · 1.41 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
<?php $page_selected = 'category.php'; ?>
<!DOCTYPE html>
<html>
<head>
<title>boutique - categorie</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=yes"/>
<link rel="shortcut icon" type="image/x-icon" href="https://i.ibb.co/0mKd0xT/icon-round-fanzine.png">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/style-category.css">
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
</head>
<body>
<header>
<?php
include("includes/header.php");
?>
</header>
<main>
<section id="before"><a href="javascript:history.back()"><i class="fas fa-arrow-circle-left"></i></a></section>
<section id="container-category">
<section id="banner-category">
<h1>CATÉGORIES</h1>
</section>
<section id="sub-category-container">
<?php
$all_cat = $category->all_categories();
//var_dump ($all_cat);
?>
</section>
</section>
</main>
<footer>
<?php include('includes/footer.php'); ?>
</footer>
</body>
</html>