mirror of
https://github.com/Aviortheking/DeltaCMS.git
synced 2025-04-22 10:52:11 +00:00
.gitignore ignores some launch files changelog.md, readme.md added end file line public.php moved started the work on it router.php added require to functions & moved the function in the file set an ini value to show errors defied some constants moved the public page management to public/public.php exampleModule -> headGenerator.php started working on module management *.json reworked files function.php added this file to manages cores functions website.php the Website Object for theme & modules page.php created a test theme
14 lines
221 B
PHP
14 lines
221 B
PHP
<?php
|
|
|
|
function page() {
|
|
// require_once "includes/header.php";
|
|
|
|
// echo PAGE["content"];
|
|
|
|
// require_once "includes/footer.php";
|
|
|
|
return "<header>Header</header>" . PAGE["content"] . "<footer>Footer</footer>";
|
|
}
|
|
|
|
?>
|