63 lines
2.0 KiB
PHP
63 lines
2.0 KiB
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
include "inc/config.php"; // die Konfigurationsdateien lesen
|
|
|
|
if(isset($_GET['section']) AND isset($titel[$_GET['section']])) {
|
|
$temp_titel = $titel[$_GET['section']];
|
|
} else {
|
|
$temp_titel = "Das Unternehmen";
|
|
}
|
|
|
|
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n";
|
|
echo " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
|
|
echo "<html>\n";
|
|
echo " <head>\n";
|
|
echo " <title>".$temp_titel."</title>\n";
|
|
echo " <link rel=\"stylesheet\" type=\"text/css\" href=\"css/page.css\" />\n";
|
|
echo " <meta http-equiv=\"Content-Type\"\n";
|
|
echo " content=\"text/html; charset=ISO-8859-1\" />\n";
|
|
echo " </head>\n";
|
|
|
|
echo " <body align=\"center\">\n";
|
|
echo " <div id=\"root\">\n"; // ganz oberer Div-Holder
|
|
echo " <div id=\"logo\">\n";
|
|
include "logo.php";
|
|
echo " </div>\n";
|
|
echo " <div id=\"header\">\n"; // Oben der Header
|
|
include "header.php";
|
|
echo " </div>\n";
|
|
echo " <div id=\"header_right\">\n";
|
|
echo " </div>\n";
|
|
echo " <div id=\"inhalt_top\">\n";
|
|
echo " </div>\n";
|
|
echo " <div id=\"inhalt_box\">\n";
|
|
echo " <div id=\"inhalt\">\n"; // In der Mitte der Inhalt
|
|
include "inhalt.php";
|
|
echo "\n";
|
|
echo " </div>\n";
|
|
echo " </div>\n";
|
|
echo " <div id=\"links_box\">\n";
|
|
echo " <div id=\"links\">\n"; // linkes Menu
|
|
include "menu.php";
|
|
echo " </div>\n";
|
|
echo " <div id=\"links_bottom\">\n";
|
|
echo " </div>\n";
|
|
echo " </div>\n";
|
|
echo " <div id=\"inhalt_bottom\">\n";
|
|
echo " </div>\n";
|
|
echo " </div>\n";
|
|
echo " <br style=\"clear:both;\" />\n"; // css-float beenden
|
|
echo " <div id=\"footer_box\">\n"; // Unten der Footer
|
|
echo " <div id=\"footer_links\">\n";
|
|
echo " </div>\n";
|
|
echo " <div id=\"footer\">\n";
|
|
echo " </div>\n";
|
|
echo " <div id=\"footer_rechts\">\n";
|
|
echo " </div>\n";
|
|
echo " </div>\n";
|
|
echo " <div id=\"footer2\">\n";
|
|
include "footer.php";
|
|
echo " </div>\n";
|
|
echo " </body>\n";
|
|
echo "</html>\n";
|
|
?>
|