-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
69 lines (60 loc) · 2.7 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!-- main header end -->
<?php require_once('public/includes/header.php'); ?>
<!-- main header end -->
<!-- Banner start -->
<div class="banner banner-bg" id="particles-banner-wrapper">
<div id="particles-banner"></div>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item item-bg active">
<div class="carousel-caption banner-slider-inner d-flex h-100 text-left">
<div class="carousel-content container">
<div class="t-center">
<h2 data-animation="animated fadeInDown delay-05s">Best Place For Rent Hostel</h2>
<p class="text-p" data-animation="animated fadeInUp delay-10s">
This is real estate website template based on Bootstrap 4 framework.
</p>
<a data-animation="animated fadeInUp delay-10s" href="#" class="btn btn-lg btn-white-lg-outline">Get Started Now</a>
</div>
</div>
</div>
</div>
<div class="carousel-item item-bg">
<div class="carousel-caption banner-slider-inner d-flex h-100 text-left">
<div class="carousel-content container">
<div class="t-right">
<h2 data-animation="animated fadeInDown delay-05s">Find Your Dream Room</h2>
<p class="text-p" data-animation="animated fadeInUp delay-10s">
This is real estate website template based on Bootstrap 4 framework.
</p>
<a data-animation="animated fadeInUp delay-10s" href="#" class="btn btn-lg btn-round btn-theme">Get Started Now</a>
</div>
</div>
</div>
</div>
<div class="carousel-item item-bg">
<div class="carousel-caption banner-slider-inner d-flex h-100 text-left">
<div class="carousel-content container">
<div class="t-left">
<h2 data-animation="animated fadeInUp delay-05s">Best Place For Rent Hostel</h2>
<p class="text-p" data-animation="animated fadeInUp delay-10s">
This is real estate website template based on Bootstrap 4 framework.
</p>
<a data-animation="animated fadeInUp delay-10s" href="#" class="btn btn-lg btn-round btn-theme">Get Started Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- banner end -->
<!-- Hostels properties start -->
<?php include_once('public/includes/hostels.php');?>
<!-- Hostels properties End -->
<!-- Rental House start -->
<?php include_once('public/includes/rental_house.php');?>
<!-- Rental House end -->
<!-- Footer start -->
<?php include('public/includes/footer.php'); ?>
<!-- Footer end -->