27 lines
842 B
PHP
Executable File
27 lines
842 B
PHP
Executable File
<?php
|
|
$thisPage="homepages";
|
|
|
|
include __DIR__ . "/../layout/header.php";
|
|
include __DIR__ . "/../layout/navigation.php";
|
|
//include __DIR__ . "/../layout/css/navi.css";
|
|
//echo "hier";
|
|
//die();
|
|
?>
|
|
</br></br><h1>Startseite</h1>
|
|
<?php
|
|
header("Location: ../../../public/index.php/impressum");
|
|
die(); // hier könnte auch eine exeption ausgeführt werden
|
|
?>
|
|
|
|
<DIV class="footer">
|
|
<hr><br>
|
|
<p style= "text-align:center;"><a href="impressum">Impressum</a></p>
|
|
<br>
|
|
</DIV>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
|
|
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
|
|
crossorigin="anonymous"></script>
|
|
</body>
|
|
</html>
|