47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
|
|
<?php
|
|
//Geschäftslogik:
|
|
require_once 'php/controller/index-controller.php';
|
|
|
|
?>
|
|
|
|
<!--
|
|
Seite: Index der Lernplattform
|
|
Funktion: Webseitengerüst, Anzeigen von Content
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="description" content="EduForge">
|
|
<meta name="author" content="Niklas Ortmann">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" type="image/x-icon" href="images/logos/logo_icon.ico">
|
|
<link rel="stylesheet" href="css/main.css">
|
|
<link rel="stylesheet" href="css/navbar.css">
|
|
<link rel="stylesheet" href="css/footer.css">
|
|
<link rel="stylesheet" href="css/article.css">
|
|
<title>EduForge</title>
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
<?php
|
|
include_once 'includes/navbar.php';
|
|
//Dynamischer Inhalt:
|
|
if (isset($_GET["pfad"])) {
|
|
if (file_exists('content/' . $_GET["pfad"] . '.php')) {
|
|
include_once 'content/' . $_GET["pfad"] . '.php';
|
|
} else {
|
|
include_once 'content/404.php';
|
|
}
|
|
} else {
|
|
include_once 'content/home.php';
|
|
}
|
|
include_once 'includes/footer.php';
|
|
?>
|
|
</body>
|
|
|
|
</html>
|