-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·68 lines (56 loc) · 1.39 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
57
58
59
60
61
62
63
64
65
66
67
68
<?php
$section = "";
session_start();
if(isset($_GET["section"]))
{
$section = $_GET["section"];
}
else
{
$section = "";
}
//require_once 'sql.php';
//$db = new DB();
?>
<!DOCTYPE html>
<html>
<head>
<title>DevBaka - Home</title>
<?php
if($section == "Ampel2"){
?>
<!-- <meta http-equiv="refresh" content="5">-->
<?php }?>
<link rel="stylesheet" type="text/css" href="static/style.css">
<link rel="shortcut icon" href="static/rainbow.ico" type="image/x-icon" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="date" content="2016-06-11T04:20:00+2000">
<meta name="description" content="DevBaka - Software Projekte, Dokumentationen, Wissen, Musik und alles mögliche um die IT-Welt">
</head>
<body>
<div id="wrapper" class="greenshadow">
<header>
<h1> DevBaka - Home </h1>
</header>
<nav>
<?php include("templates/nav.php"); ?>
</nav>
<div id="contain">
<section id="rechts" class="column">
<?php include("sides.php"); ?>
</section>
<aside id="links" class="column">
<?php include("templates/aside.php"); ?>
</aside>
</div>
<footer>
<?php include("templates/footer.php"); ?>
</footer>
<script src="//cdn.tinymce.com/4/tinymce.min.js"></script>
<script>
tinymce.init({selector:'textarea'});
</script>
</div>
</body>
</html>