-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
46 lines (38 loc) · 1.05 KB
/
404.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
<?php
require_once 'core/init.php';
$header = Header::get(1);
?>
<!DOCTYPE html>
<html lang="bs-BA">
<?php
$title="Greška";
$og_title="Greška";
$website_url="https://visit-neum.com/error404.html";
$meta['description']="Tražena stranica ne postoji!";
$meta['keywords']="";
$og_image="images/error.404.png";
$twitter_image="images/error.404.png";
$image_alt="Greška!";
include 'inc/head.php';
?>
<style>
.accomodation #main {margin: 0 0 10px 0;}
#main p{text-align: center;}
#sidebar{background: #FFF;}
</style><!-- end #head -->
<body class="accomodation">
<div id="wrapper">
<header id="header" class="cf">
<?php echo $header->render(); ?>
</header>
<?php include 'inc/nav.inc'; ?>
<div id="main">
<p><b><i>"Tražena stranica ne postoji! Provjerite da li ste dobro unijeli adresu!"</i></b></p>
</div>
<aside id="sidebar">
<?php include 'inc/weather.inc'; ?>
</aside>
<?php include 'inc/footer.php'; ?>
</div><!-- end #wrapper -->
</body>
</html>