This commit is contained in:
howard
2023-04-06 10:13:21 +02:00
commit 132b735d79
35 changed files with 2328 additions and 0 deletions

24
index.php Executable file
View File

@@ -0,0 +1,24 @@
<?php
include './config/global_config.php';
$global = new Global_conf();
if($global->offline==NULL) {
//echo "//Conf is not connected//";
}
else {
// echo "//Conf is connected//";
}
include './web_parts/header.php';
//include './web_parts/loading.php';
// |
/* --> */ include './web_parts/home.php';
include './web_parts/footer.php';
?>