forked from thedevdrawer/ecommerce-using-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.html
27 lines (27 loc) · 1.11 KB
/
category.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Shopping Cart | The Dev Drawer</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/style.min.css" rel="stylesheet">
</head>
<body>
<div id="nav-placeholder"></div>
<div class="container-fluid">
<img src="https://via.placeholder.com/1280x200.png?text=Placeholder%20Image" class="img-fluid">
<br>
<br>
<h1 class="category-name"></h1>
<div class="breadcrumb"></div>
<div class="row products"></div>
</div>
<div id="footer-placeholder"></div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="js/init.js"></script>
</html>