Initial commit.

This commit is contained in:
2018-06-12 07:53:27 +02:00
commit 227c91963e
16 changed files with 1264 additions and 0 deletions

40
edit/page.php Normal file
View File

@ -0,0 +1,40 @@
<?PHP
/**
* This page offers the opportunity to edit static pages.
*/
/*
* Require files and ensure environment.
*/
require_once __DIR__ . "/inc/functions.php";
ensureEnvironment(); // Ensure existence of system files.
$translations = loadLanguage(); // Load translations.
ensureBackendEnv(); // Ensure session is started etc.
/*
* Output
*/
echo printBackendHead($translations['start']);
echo printBackendHeader($translations['start'], $translations['helpStart']);
echo '
<div id="mainWrapper">
';
echo printBackendNav($translations);
echo '
<main>';
echo '
</main>
</div>';
echo printBackendEnd();
?>