-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
40 lines (38 loc) · 1.1 KB
/
home.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
<?php
include 'setup.php';
include 'databaseconnection.php';
include 'framework.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="styles/main.css">
<title><?php echo $page['title'].' | '.$page_name; ?></title>
</head>
<body>
<div class="expanded row">
<div class="large-12 columns no-margin">
<nav class="menu-centered" id="ctr-nav-background">
<ul class="menu">
<?php echo Navagation(); ?>
</ul>
</nav>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<h1><?php echo $page['header']; ?></h1>
<p><?php echo $page['body']; ?></p>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/foundation.min.js"></script>
<script src="js/main.js" type="text/javascript"></script>
<script>
$(document).foundation();
</script>
</body>
</html>