-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·56 lines (54 loc) · 1.51 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
<?php
$root = realpath($_SERVER["DOCUMENT_ROOT"]);
include($root."/include/globals.php");
include_once(BU.'libs/foundation-menu-generator.class.php');
include_once(BU.'libs/foundation-orbit-generator.class.php');
include_once(BU.'data/menu_data.php');
include_once('images_data.php');
include_once('translate_data.php');
?>
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Casa Olivastro</title>
<link rel="stylesheet" href="/css/foundation.css">
<link rel="stylesheet" href="/css/style.css">
<script src="/js/vendor/custom.modernizr.js"></script>
</head>
<body>
<div class="wrapper">
<div class="row">
<div class="large-12 columns">
<?=$menuGenerator->html()?>
</div>
</div>
<?=$orbitGenerator->html()?>
<div class="row" id="content">
<div class="large-12 colums">
<div class="panel">
<h1><?=$title?></h1>
<?=$desc?>
</div>
</div>
<div class="push"></div>
</div>
</div>
<div class="footer">
<?=$footer?>
</div>
<script>
document.write('<script src=' +
('__proto__' in {} ? '/js/vendor/zepto' : '/js/vendor/jquery') +
'.js><\/script>')
</script>
<script src="/js/foundation.min.js"></script>
<script>
$(document).ready(function(){
$(document).foundation();
});
</script>
</body>
</html>