mirror of
https://gitlab.com/siarp/beethoven2000.de.git
synced 2026-08-07 19:18:18 +00:00
38 lines
639 B
PHP
38 lines
639 B
PHP
<?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');
|
|
?>
|