index.blade.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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" style="margin-top: 45px;">
  16. </p>
  17. </header>
  18. <div role="main" class="main">
  19. <div class="home">
  20. <h2>Learn the terrain.</h3>
  21. <p>
  22. You've landed yourself on our default home page. The route that
  23. is generating this page lives at:
  24. </p>
  25. <pre>{{ path('app') }}routes.php</pre>
  26. <p>And the view sitting before you can be found at:</p>
  27. <pre>{{ path('app') }}views/home/index.php</pre>
  28. <h2>Grow in knowledge.</h2>
  29. <p>
  30. Leaning to use Laravel is amazingly simple thanks to
  31. its {{ HTML::link('docs', 'wonderful documentation') }}.
  32. Here are the basics:
  33. </p>
  34. <ul>
  35. <li>{{ HTML::link('docs/routing#the-basics', 'Defining Routes') }}</li>
  36. <li>{{ HTML::link('docs/controllers#the-basics', 'Building Controllers') }}</li>
  37. <li>{{ HTML::link('docs/views#the-basics', 'Creating Views') }}</li>
  38. <li>{{ HTML::link('docs/database/eloquent', 'Eloquent ORM') }}</li>
  39. </ul>
  40. <h2>Create something beautiful.</h2>
  41. <p>
  42. Now that you're up and running, it's time to start creating!
  43. Here are some links to help you get started:
  44. </p>
  45. <ul class="out-links">
  46. <li><a href="http://laravel.com">Official Website</a></li>
  47. <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
  48. <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
  49. </ul>
  50. </div>
  51. </div>
  52. </div>
  53. </body>
  54. </html>