aboutsummaryrefslogtreecommitdiff
path: root/public/products.php
diff options
context:
space:
mode:
Diffstat (limited to 'public/products.php')
-rw-r--r--public/products.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/public/products.php b/public/products.php
new file mode 100644
index 0000000..b42e4db
--- /dev/null
+++ b/public/products.php
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <?php include 'head.php' ?>
+ <title>producten</title>
+ <link rel='stylesheet' type='text/css' media='screen' href='products.css'>
+</head>
+<body>
+ <?php include 'navbar.php' ?>
+ <div class="main limwidth">
+ <h2>lijst met producten:</h2>
+ <div class="products">
+ <a href="/product.php?id=123" class="product">
+ <img src="img/placeholder.png" alt="">
+ <span class="price">3,45</span>
+ <span class="name">courgette</span>
+ </a>
+ <a href="/product.php?id=123" class="product">
+ <img src="img/placeholder.png" alt="">
+ <span class="price">3,45</span>
+ <span class="name">courgette</span>
+ </a>
+ <a href="/product.php?id=123" class="product">
+ <img src="img/placeholder.png" alt="">
+ <span class="price">3,45</span>
+ <span class="name">courgette</span>
+ </a>
+ <a href="/product.php?id=123" class="product">
+ <img src="img/placeholder.png" alt="">
+ <span class="price">3,45</span>
+ <span class="name">courgette</span>
+ </a>
+ </div>
+ </div>
+ <?php include 'footer.php' ?>
+</body>
+</html>