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

14
bundles/docs/routes.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
View::composer('docs::template', function($view)
{
Asset::add('stylesheet', 'css/style.css');
Asset::add('modernizr', 'js/modernizr-2.5.3.min.js');
});
Route::get('(:bundle)', function()
{
return View::make('docs::home');
});