-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
54 lines (34 loc) · 999 Bytes
/
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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Saurer-Bau GmBH</title>
<meta name="description" content="Saurer-Bau GmBH">
<meta name="author" content="Simon Isenschmid">
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="mainWrapper" class="mainWrapper">
<div id="wrapper" class="wrapper">
<?php include 'functions.php'; ?>
<div id="header" class="header">
<center>
<img src='images/logo.jpg' width='600x' />
</center>
</div>
<?php displayMenu(); ?>
<div id="content" class="content">
<?
$activePage = (isset($_GET['top'])) ? $_GET['top'] : "home";
displayPage($activePage);
?>
</div>
<div id="footer" class="footer">
</div>
</div>
<!-- download it! html boilerplate; and reset till... -->
</body>
</html>