aboutsummaryrefslogtreecommitdiff
path: root/public/cart.php
blob: b888cd8d189844df214bae9adbfcc5ecda7537d0 (plain)
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
<!DOCTYPE html>
<html>
<head>
	<?php include 'head.php' ?>
	<title>dit is product</title>
</head>
<body>
	<?php include 'navbar.php' ?>
	<div class="main limwidth">
		<h2>dingen in je mand</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>