Inital commit

This commit is contained in:
Tilman
2011-10-26 10:11:42 +02:00
commit c0da376199
888 changed files with 44367 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
<?php
include_once($_SERVER['DOCUMENT_ROOT'].'/daten/php/startup.php');
// Falls das Stichwort bekannt ist, wird zur jeweiligen Seite verzweigt
if (false) {
}
// Ist das Stichwort unbekannt, wird stattdessen Google Sitesearch angeboten
else {
sleep(1);
?><?php
$pagetitle = 'Suche';
$breadcrumb = 'Suche';
// $keywords = '';
// $description = '';
include_once($_SERVER['DOCUMENT_ROOT'].'/daten/php/pageheader.php');
?>
<div class="content">
<p style="text-align: center;">
Dieses Stichwort muss von jemand anderem sein...
</p>
</div>
<?php
include_once($_SERVER['DOCUMENT_ROOT'].'/daten/php/pagefooter.php');
?>
<?php
}
?>