index.blade.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. </p>
  33. <h2>Create something beautiful.</h2>
  34. <p>
  35. Now that you're up and running, it's time to start creating!
  36. Here are some links to help you get started:
  37. </p>
  38. <ul class="out-links">
  39. <li><a href="http://laravel.com">Official Website</a></li>
  40. <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
  41. <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
  42. </ul>
  43. </div>
  44. </div>
  45. </div>
  46. </body>
  47. </html>