Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<!DOCTYPE html>
<html lang="nl">
<?php
include $_SERVER['DOCUMENT_ROOT'] . '/inc/data.php';
include $_SERVER['DOCUMENT_ROOT'] . "/inc/site/head.php"; ?>
<body>
<?php include $_SERVER['DOCUMENT_ROOT'] . "/inc/site/header.php"; ?>
<section class="banner">
<h2>BBQ Blitz</h2>
</section>
<main>
<article>
<img src="/assets/images/grill.png" alt="BBQ">
</article>
<article>
<h2>Welkom bij BBQ Blitz</h2>
<p>"let us grill"</p>
<p>BBQ Blitz is een online platform waar je BBQ grill kunt bestellen. Wij leveren bij jou thuis en je kunt direct lekker eten. Wij hebben verschillende BBQ Gerechten voor verschillende gelegenheden. Kijk snel in ons assortiment en bestel jouw eten.</p>
<a class="button" href="/order.php">Bestellen</a>
</article>
</main>
<?php
// Fetch all reviews
$getAllReviews = $reviews->getAllReviews();
?>
<section class="reviews">
<h2 style="margin: 2.5%";>Reviews</h2>
<ul>
<?php foreach ($getAllReviews as $review): ?>
<?php $klant = $auth->getUserById($review->klant) ?>
<li style="border: 3px #b22222 solid; border-radius: 10px; margin: 1px 3px 5px -10px; padding:2%">
<h3 ><?php echo htmlspecialchars($klant->firstname); ?></h3>
<p>Stars: <?php echo $review->stars; ?></p>
<p><?php echo htmlspecialchars($review->message); ?></p>
</li>
<?php endforeach; ?>
</ul>
</section>
<?php include $_SERVER['DOCUMENT_ROOT'] . "/inc/site/footer.php"; ?>
</body>
</html>