index.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Laravel - A Framework For Web Artisans</title>
  6. <style>
  7. @import url(http://fonts.googleapis.com/css?family=Ubuntu);
  8. body {
  9. background:#eee;
  10. color: #6d6d6d;
  11. font: normal normal normal 14px/1.253 Ubuntu, sans-serif;
  12. margin:0;
  13. min-width:800px;
  14. padding:0;
  15. }
  16. #main {
  17. background-clip: padding-box;
  18. background-color: #fff;
  19. border:1px solid #ccc;
  20. border-radius: 5px;
  21. box-shadow: 0 0 10px #cdcdcd;
  22. margin: 50px auto 0;
  23. padding: 30px;
  24. width: 700px;
  25. }
  26. #main h1 {
  27. font-family: 'Ubuntu';
  28. font-size: 34px;
  29. margin: 0 0 20px 0;
  30. padding: 0;
  31. }
  32. #main h2,h3 {
  33. margin-top: 25px;
  34. padding: 0 0 0 0;
  35. }
  36. #main h3 {
  37. font-size: 18px;
  38. }
  39. #main p {
  40. line-height: 25px;
  41. margin: 10px 0;
  42. }
  43. #main pre {
  44. background-color: #f0f0f0;
  45. border-left: 1px solid #d8d8d8;
  46. border-top: 1px solid #d8d8d8;
  47. border-radius: 5px;
  48. padding: 10px;
  49. }
  50. #main ul {
  51. margin: 10px 0;
  52. padding: 0 30px;
  53. }
  54. #main li {
  55. margin: 5px 0;
  56. }
  57. </style>
  58. </head>
  59. <body>
  60. <div id="main">
  61. <h1>Welcome to Laravel</h1>
  62. <p>
  63. You have successfully installed the Laravel framework. Laravel is a simple framework
  64. to help web artisans create beautiful, creative applications using elegant, expressive
  65. syntax. You'll love using it.
  66. </p>
  67. <h3>Learn the terrain.</h3>
  68. <p>
  69. You've landed yourself on our default home page. The route that
  70. is generating this page lives at:
  71. </p>
  72. <pre><code>APP_PATH/routes.php</code></pre>
  73. <p>And the view sitting before you can be found at:</p>
  74. <pre><code>APP_PATH/views/home/index.php</code></pre>
  75. <h3>Create something beautiful.</h3>
  76. <p>
  77. Now that you're up and running, it's time to start creating!
  78. Here are some links to help you get started:
  79. </p>
  80. <ul>
  81. <li><a href="http://laravel.com">Official Website</a></li>
  82. <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
  83. <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
  84. </ul>
  85. </div>
  86. </body>
  87. </html>