break;
    case 'underscore_libs':
        include _VIEWS . 'header.php';
        include _VIEWS . 'underscore_libs.php';
        include _VIEWS . 'footer.php';
        break;
    case 'underscore_php':
        include _VIEWS . 'header.php';
        include _VIEWS . 'underscore_php.php';
        include _VIEWS . 'footer.php';
        break;
        // http://localhost/500
        // http://localhost/500.html
    // http://localhost/500
    // http://localhost/500.html
    case '500':
    case '500.html':
        header("HTTP/1.0 500 Internal Server Error");
        include _WEBROOT . '500.html';
        break;
        // The default
    // The default
    case '404':
    case '404.html':
    default:
        header("HTTP/1.0 404 Not Found");
        include _WEBROOT . '404.html';
        break;
}
Config::finish();