\n
\n"); define('IE_END', ""); // ========================== BOOTSTRAP == // load all third party require(WEB_ROOT . '/third_party/parsedown.php'); require(WEB_ROOT . '/third_party/parsedown_extra.php'); // load all the config files require(WEB_ROOT . '/config/routes.php'); require(WEB_ROOT . '/config/style.php'); // load all the helpers require(WEB_ROOT . '/helpers/lang.php'); require(WEB_ROOT . '/helpers/aria.php'); require(WEB_ROOT . '/helpers/image.php'); require(WEB_ROOT . '/helpers/markdown.php'); require(WEB_ROOT . '/helpers/database.php'); require(WEB_ROOT . '/helpers/sanitize.php'); // load all core files require(WEB_ROOT . '/core/core.php'); require(WEB_ROOT . '/core/component.php'); require(WEB_ROOT . '/core/controller.php'); require(WEB_ROOT . '/core/model.php'); require(WEB_ROOT . '/core/router.php'); // load file stamps require(WEB_ROOT . '/stamp.php'); // ============================== START == function __init() { $router = new Router(); $router->handle_req(); }; __init();