-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomes.php
More file actions
46 lines (39 loc) · 1.3 KB
/
homes.php
File metadata and controls
46 lines (39 loc) · 1.3 KB
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
<?php
require_once 'core/init.php';
$header = Header::get(1);
$categories = Categories::get(5);
?>
<!DOCTYPE html>
<html itemscope lang="bs-BA">
<?php
$title="Najbolje kuće za odmor u Neumu | Najniže cijene smještaja!";
$meta['description']="Najbolje, najjeftinije i najudobnije kuće za odmor u Neumu, Bosna i Hercegovina – pronađite i rezervišite smještaj za svoje putovanje. Direktan kontakt s vlasnicima!";
$website_url="https://visit-neum.com/the-best-homes-in-neum.html";
$og_image="./gallery/visit-neum.jpg";
$twitter_image="./gallery/visit-neum.webp";
$image_alt="logo | visit-neum.com";
include 'inc/head.php';
?>
<body class="accomodation">
<div id="wrapper">
<header id="header" class="cf">
<?php echo $header->render(); ?>
</header>
<?php include 'inc/nav.inc'; ?>
<div id="main">
<?php echo $categories->render(); ?>
<section class="offers" aria-label='Najbolje i najjeftinije kuće za odmor u Neumu'>
<!-- slider box -->
<?php
$home = new HomeSlide();
$home->renderSlider();
?>
</section><!--end .offers-->
</div><!-- end #main -->
<aside id="sidebar">
<?php include 'inc/weather.inc'; ?>
</aside><!-- end #sidebar -->
<?php include 'inc/footer.php'; ?>
</div><!-- end #wrapper -->
</body>
</html>