STB/blog/views/user/homepages.php

26 lines
794 B
PHP
Executable File

<?php
$thisPage="homepages";
include __DIR__ . "/../layout/header.php";
include __DIR__ . "/../layout/navigation.php";
include __DIR__ . "/../layout/css/navi.css";
?>
</br></br><h1>Startseite</h1>
<?php
header("Location: ../../../public/index.php/index");
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>