first commit

This commit is contained in:
2022-12-20 12:21:31 +01:00
commit 1b4073b3a4
17 changed files with 507 additions and 0 deletions

24
index.php Normal file
View File

@ -0,0 +1,24 @@
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$_page = isset($_GET['p']) ? $_GET['p'] : '';
require_once('./inc/tpl.class.php');
require_once('./inc/router.inc.php');
$tpl = (object)$tpl;
if(!@$tpl->debug) {
tpl::view('tpl/' . $tpl->file,
array_merge([
'page' => $_page
],
gettype($tpl->data) !== 'string' ? $tpl->data : [])
);
}
else {
echo "<pre>";
print_r($_content);
echo "</pre>";
}