我的网站上有一个错误:http ://www.velosofy.com/blog/
解析错误:语法错误,第 17 行 /home/velosofy/public_html/blog/index.php 中的意外 T_FUNCTION
index.php(第 17 行):
get('/index', function () {
    $page = from($_GET, 'page');
    $page = $page ? (int)$page : 1;
    $posts = get_posts($page);
    if(empty($posts) || $page < 1){
        // a non-existing page
        not_found();
    }
    render('main',array(
    'page' => $page,
    'posts' => $posts,
    'has_pagination' => has_pagination($page)
    ));
});
谁能告诉我如何解决这个问题?