blob: ac4ce465a9706124657cd9872360e27d8c7e4d70 (
plain)
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
|
<?php
$author = 'Emily';
$pathToRoot = '../../';
?>
<?php
include($pathToRoot . 'includes/firstinclude.inc.php');
include($pathToRoot . 'includes/header.inc.php');
include($pathToRoot . 'includes/mainmenu.inc.php');
include($pathToRoot . 'sidebars/projekte/main.inc.php');
?>
<div id="inhalt">
<h2>
Verwaltung
</h2>
<p>
Dieses Projekt ist noch in Planung.
Wir halten euch über die Fortschritte auf dem Laufenden.
</p>
</div>
<?php
include($pathToRoot . 'includes/footer.inc.php');
include($pathToRoot . 'includes/lastinclude.inc.php');
?>
|