docs bundle in progress

This commit is contained in:
Dayle Rees
2012-04-01 22:45:19 +01:00
parent 363b7c54df
commit bf32b6f6ca
12 changed files with 294 additions and 2 deletions

View File

@@ -33,4 +33,10 @@
|
*/
return array();
return array(
// route the official docs
'docs' => array(
'handles' => 'docs'
),
);

View File

@@ -35,7 +35,7 @@
Route::get('/', function()
{
return View::make('home.index');
return Redirect::to('docs');
});
/*