yoursecretsareours/index.php

22 lines
391 B
PHP

<?php
/**
* The Main file of the website
*/
require_once 'main.inc.php';
try
{
$website = new website();
$content = $website->buildWebsite();
@ob_clean();
echo $content;
} catch( Exception $e )
{
if( $e->getCode() === 201 )
{
HTTPStatus( 503 );
echo 'We encountered an critical error.<br>The system file cannot be loaded!';
return;
}
}