index.blade.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. {{ HTML::style('laravel/css/style.css') }}
  9. </head>
  10. <body onload="prettyPrint()">
  11. <div class="wrapper">
  12. <header>
  13. <h1>Laravel</h1>
  14. <h2>A Framework For Web Artisans</h2>
  15. <p class="intro-text">
  16. You have successfully installed the Laravel framework. Laravel is a simple framework
  17. that helps web artisans create beautiful, creative applications using elegant, expressive
  18. syntax. You'll love using it.
  19. </p>
  20. </header>
  21. <div role="main" class="main">
  22. <div class="home">
  23. <h3>Learn the terrain.</h3>
  24. <p>
  25. You've landed yourself on our default home page. The route that
  26. is generating this page lives at:
  27. </p>
  28. <pre>{{ path('app') }}routes.php</pre>
  29. <p>And the view sitting before you can be found at:</p>
  30. <pre>{{ path('app') }}views/home/index.php</pre>
  31. <h3>Read the docs.</h3>
  32. <p>
  33. The docs are now included with the source package, you can {{ HTML::link('docs', 'read them offline here') }}.
  34. </p>
  35. <h3>Create something beautiful.</h3>
  36. <p>
  37. Now that you're up and running, it's time to start creating!
  38. Here are some links to help you get started:
  39. </p>
  40. <ul class="out-links">
  41. <li><a href="http://laravel.com">Official Website</a></li>
  42. <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
  43. <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
  44. </ul>
  45. </div>
  46. </div>
  47. </div>
  48. </body>
  49. </html>