template.blade.php 945 B

12345678910111213141516171819202122232425262728293031323334
  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::bundle('docs')->styles(); }}
  9. {{ Asset::bundle('docs')->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>
  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. @include('docs::menu')
  25. </aside>
  26. <div class="content">
  27. @yield('content')
  28. </div>
  29. </div>
  30. </div>
  31. {{ Asset::container('footer')->bundle('docs')->scripts(); }}
  32. </body>
  33. </html>