17 lines
236 B
PHP
17 lines
236 B
PHP
<?php
|
|
/**
|
|
* The Main file of the website
|
|
*/
|
|
require_once 'main.inc.php';
|
|
|
|
try
|
|
{
|
|
$website = new website();
|
|
$website->buildWebsite( language::$lang_file );
|
|
} catch( Exception $e )
|
|
{
|
|
if( $e->getCode() === 201 )
|
|
{
|
|
|
|
}
|
|
} |