blob: fb2fdf3f1f65b0007aafcc5e709c49f9f578c0a8 (
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
27
28
|
<?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/wissen/main.inc.php');
?>
<div id="inhalt">
<h2>
Wissen
</h2>
<p>
Hier könnt ihr euch umfassend über die Themen informieren, die wir in der ComputerAG behandelt haben.
Mit diesem Material könnt ihr euch dieses Wissen auch selbst aneignen. Falls euch ein Gebiet
besonders interessiert, besucht uns doch einmal im Internetcafe. Wir sind gerne bereit, unser Wissen
an euch weiterzugeben.
</p>
</div>
<?php
include($pathToRoot . 'includes/footer.inc.php');
include($pathToRoot . 'includes/lastinclude.inc.php');
?>
|