Initial commit

This commit is contained in:
2020-01-04 20:41:09 +01:00
commit 150d0179fc
1328 changed files with 186900 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
error_reporting(E_ALL & ~E_NOTICE);
require_once('header.php');
if(file_exists(basename(($_GET['page']!='' ? $_GET['page'] : 'home') . '.php')))
require_once(basename(($_GET['page']!='' ? $_GET['page'] : 'home') . '.php'));
else
require_once("404.php");
require_once('footer.php');
?>