template.blade.php 995 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <title>Laravel: A Framework For Web Artisans</title>
  7. <meta name="viewport" content="width=device-width">
  8. {{ Asset::styles(); }}
  9. {{ Asset::scripts(); }}
  10. </head>
  11. <body onload="prettyPrint()">
  12. <div class="wrapper">
  13. <header>
  14. <h1>Laravel</h1>
  15. <h2>A Framework For Web Artisans</h2>
  16. <p class="intro-text">
  17. You have successfully installed the Laravel framework. Laravel is a simple framework
  18. that helps web artisans create beautiful, creative applications using elegant, expressive
  19. syntax. You'll love using it.
  20. </p>
  21. </header>
  22. <div role="main" class="main">
  23. <aside class="sidebar">
  24. {{ $sidebar }}
  25. </aside>
  26. <div class="content">
  27. @yield('content')
  28. </div>
  29. </div>
  30. </div>
  31. {{ HTML::script('http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js') }}
  32. {{ Asset::container('footer')->scripts(); }}
  33. </body>
  34. </html>