Online state

This commit is contained in:
chsteinle
2022-02-21 10:43:09 +01:00
commit a3edc1f2c2
59 changed files with 822 additions and 0 deletions

38
greybar.php Normal file
View File

@@ -0,0 +1,38 @@
<?php
// Die Datei greybar.php
if (isset($_GET['section'])) {
$section = $_GET['section'];
}
else {
$section = "home";
}
echo "<ul>\n";
// Element Header Haftungsausschluss
echo " <li";
if ($section == 'haftung') {
echo " class=\"aktiv\"";
}
echo "><a href=\"index.php?section=haftung\">Haftungsausschluss</a></li>\n";
// Element Header Impressum
echo " <li";
if ($section == 'impressum') {
echo " class=\"aktiv\"";
}
echo "><a href=\"index.php?section=impressum\">Impressum</a></li>\n";
// Element Header Kontakt
echo " <li";
if ($section == 'kontakt') {
echo " class=\"aktiv\"";
}
echo "><a href=\"index.php?section=kontakt\">Kontakt</a></li>\n";
echo "</ul>\n"
?>