id = $id; // } // public function loadPost() { // } // } // class Posts implements Page { // public function __construct() {} // } include_once "router.php"; $router = Router::getRouter(); $home = function() { return file_get_contents("../html/index.html"); }; $router->addRoute("/^\/$/", $home); $post = function() { return file_get_contents("../html/post.html"); }; $router->addRoute("/^\/post\/$/", $post); $search = function() { return file_get_contents("../html/search.html"); }; $router->addRoute("/^\/search\/$/", $search);