Code formatting.

This commit is contained in:
2023-12-28 13:31:44 +01:00
parent b65644f3e0
commit b70cedac3b
84 changed files with 3357 additions and 3280 deletions

View File

@@ -1,19 +1,16 @@
<h1><img src="img/amelie/FW Am Sterne.png" />Wohnung Amelie</h1>
<h1><img src="img/amelie/FW Am Sterne.png"/>Wohnung Amelie</h1>
<?php
if (!isset($_GET['t'])) {
include "inhalte/amelie/standard.php";
}
else {
if ('preise' == $_GET['t']) {
include "inhalte/amelie/preise.php";
}
elseif ('anfrage' == $_GET['t']) {
include "inhalte/amelie/anfrage.php";
}
else {
include "inhalte/amelie/standard.php";
}
}
if (!isset($_GET['t'])) {
include "inhalte/amelie/standard.php";
} else {
if ('preise' == $_GET['t']) {
include "inhalte/amelie/preise.php";
} elseif ('anfrage' == $_GET['t']) {
include "inhalte/amelie/anfrage.php";
} else {
include "inhalte/amelie/standard.php";
}
}
?>