-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
55 lines (47 loc) · 1.08 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
<?php
session_start();
define('IN_SITE', true);
if(isset($_GET["section"]))
{
$section = $_GET["section"];
}
else
{
$section = "";
}
require_once 'mysql.php';
$db = new DB();
?>
<html>
<head>
<title> Mein Grundgerüst </title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<!--[if gte IE 9]>
<style type="text/css">
.gradient {
filter: none;
}
</style>
<![endif]-->
</head>
<body>
<div id="wrapper" class="shadow">
<header>
</header>
<nav>
<?php include("menu.php"); ?>
</nav>
<main>
<?php include("sites.php"); ?>
</main>
</div>
<footer>
<?php include("footer.php"); ?>
</footer>
<script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>
<script>
tinymce.init({selector:'textarea'});
</script>
</body>
</html>