Initial commit from online.

This commit is contained in:
2023-12-28 12:13:55 +01:00
commit b65644f3e0
235 changed files with 4060 additions and 0 deletions

23
haus.php Normal file
View File

@@ -0,0 +1,23 @@
<h1><img src="img/haus/h1.gif" />Unser Haus</h1>
<?php
if (!isset($_GET['t'])) {
include "inhalte/haus/standard.php";
}
else {
if ('lage' == $_GET['t']) {
include "inhalte/haus/lage.php";
}
elseif ('geschichte' == $_GET['t']) {
include "inhalte/haus/gesch.php";
}
elseif ('wohn' == $_GET['t']) {
include "inhalte/haus/wohn.php";
}
else {
include "inhalte/haus/standard.php";
}
}
?>