-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhotels.php
More file actions
48 lines (40 loc) · 1.43 KB
/
hotels.php
File metadata and controls
48 lines (40 loc) · 1.43 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
47
48
<?php
require_once 'core/init.php';
$header = Header::get(1);
$categories = Categories::get(1);
?>
<!DOCTYPE html>
<html itemscope lang="bs-BA">
<?php
$title="Najbolji Hoteli u Neumu | Najniže cijene smještaja |Posjetite odmah!";
$meta['description']="Najbolji, najpovoljniji, najudobniji i najluksuzniji Hoteli u Neumu, Bosna i Hercegovina – pronađite i rezervišite smještaj za svoje putovanje.";
$meta['keywords']="neum, hoteli, Hoteli neum, apartmani, sobe, ljetovanje, pansioni, privatni smještaj, smjestaj, ljetovanje neum, neum apartmani i sobe";
$website_url="https://visit-neum.com/the-best-hotels-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='Najbolji i najjeftiniji hoteli u Neumu'>
<!-- slider box -->
<?php
$hotel = new HotelSlide();
$hotel->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>