blob: 9ae9d7e954f09957d00d9cd2ee3a3546cd361963 (
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>
Webdesign
</h2>
<p>
Das Produkt dieser Lerneinheit ist die Seite, die ihr vor euch seht!
Wir haben html, css und php behandelt.
</p>
</div>
<?php
include($pathToRoot . 'includes/footer.inc.php');
include($pathToRoot . 'includes/lastinclude.inc.php');
?>
|