-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.php
34 lines (25 loc) · 801 Bytes
/
home.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
<!DOCTYPE html>
<html lang="en">
<?php
include __DIR__ . "./model/Hotels.php";
include __DIR__ . "./templates/header.php";
?>
<body>
<main>
<!-- Hero -->
<div class="jumbotron jumbotron-fluid text-center bg-light d-flex align-items-center justify-content-center">
<div class="container mt-5">
<h1 class="mb-3 mt-5">Looking for a place to stay?</h1>
<p class="mb-3">Compare our accommodation options!</p>
</div>
</div>
<!-- Hero END -->
<!-- Cards: Hotels -->
<div class="row row-cols-1 row-cols-lg-3 g-5 m-0">
<? Hotel::getAllHotels(); ?>
</div>
<!-- Cards: Hotels END -->
</main>
<?php include __DIR__ . "/templates/footer.php"; ?>
</body>
</html>