routes.php 970 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. require_once __DIR__.'/libraries/markdown.php';
  3. View::composer('docs::template', function($view)
  4. {
  5. Asset::add('stylesheet', 'laravel/css/style.css');
  6. Asset::add('modernizr', 'laravel/js/modernizr-2.5.3.min.js');
  7. Asset::container('footer')->add('prettify', 'laravel/js/prettify.js');
  8. $view->with('sidebar', Markdown(file_get_contents(path('storage').'documentation/contents.md')));
  9. });
  10. Route::get('(:bundle)', function()
  11. {
  12. return View::make('docs::home');
  13. });
  14. Route::get('docs/(:any)/(:any?)', function($section, $page = null)
  15. {
  16. $root = path('storage').'documentation/';
  17. $file = rtrim(implode('/', array($section, $page)), '/').'.md';
  18. if (file_exists($path = $root.$file))
  19. {
  20. $content = Markdown(file_get_contents($path));
  21. }
  22. elseif (file_exists($path = $root.$section.'/home.md'))
  23. {
  24. $content = Markdown(file_get_contents($path));
  25. }
  26. else
  27. {
  28. return Response::error('404');
  29. }
  30. return View::make('docs::page')->with('content', $content);
  31. });