This commit is contained in:
Martin Stadler
2017-01-26 12:39:28 +01:00
commit 7c355dfd2d
724 changed files with 6154 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
<?php
if (!isset($_REQUEST['name'])) {
header("Location: ../index.php");
}
$heading = 'Steckbrief vom Treffen 2003';
$page_title = 'Beethoven2000 - '. $heading;
$additional_headers = array();
include('../includes/header.inc');
?>
<div id="bread-crumbs">
<a href="../intern.php">Intern</a> >
<?php
echo '<a href="steckbriefe.php">'.$heading.'</a>';
if (isset($_REQUEST['name']))
echo ' > Steckbrief';
?>
</div>
<div id="content">
<h1><?php echo $heading; ?></h1>
<div id="steckbrief">
<?php
include('treffen2003/steckbriefe/'.$_REQUEST['name'].'.html');
echo "</div>\n";
echo "</div>\n";
include('../includes/footer.inc');
?>