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

22
admin/fotos.php Normal file
View File

@@ -0,0 +1,22 @@
<h1>Fotos</h1>
<?php
if (!isset($_GET['t'])) {
include "inhalte/fotos/standard.php";
}
else {
if (('will' == $_GET['t']) OR ('haus' == $_GET['t']) OR ('lage' == $_GET['t']) OR ('geschichte' == $_GET['t']) OR ('gaby' == $_GET['t']) OR ('amelie' == $_GET['t'])){
include "inhalte/fotos/10er.php";
}
elseif ('wohn' == $_GET['t']) {
include "inhalte/fotos/wohn.php";
}
elseif ('bilder' == $_GET['t']) {
include "inhalte/fotos/bilder.php";
}
else {
include "inhalte/fotos/standard.php";
}
}
?>