index.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Laravel - A Framework For Web Artisans</title>
  6. <style>
  7. <?php echo file_get_contents(PUBLIC_PATH.'css/laravel.css'); ?>
  8. </style>
  9. </head>
  10. <body>
  11. <div id="main">
  12. <img src="http://laravel.com/img/splash/check.png" class="marker">
  13. <h1>Welcome To Laravel</h1>
  14. <h2>A Framework For Web Artisans</h2>
  15. <p>
  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. <h3>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><code>APP_PATH/routes.php</code></pre>
  26. <p>And the view sitting before you can be found at:</p>
  27. <pre><code>APP_PATH/views/home/index.php</code></pre>
  28. <h3>Create something beautiful.</h3>
  29. <p>
  30. Now that you're up and running, it's time to start creating!
  31. Here are some links to help you get started:
  32. </p>
  33. <ul>
  34. <li><a href="http://laravel.com">Official Website</a></li>
  35. <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
  36. <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
  37. </ul>
  38. </div>
  39. </body>
  40. </html>