You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
333 B
23 lines
333 B
<?php
|
|
|
|
$title = "Galerie";
|
|
|
|
include "header.php";
|
|
|
|
$page = $_GET["page"] ?? "home";
|
|
|
|
if ($page == "home") {
|
|
include "pages/gallery.php";
|
|
} elseif ($page == "autor") {
|
|
include "pages/author.php";
|
|
} elseif ($page == "search") {
|
|
include "pages/search.php";
|
|
} else {
|
|
include "pages/error.php";
|
|
}
|
|
|
|
include "footer.php";
|
|
|
|
?>
|
|
|
|
|
|
|