index.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 0 25px 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: 25px auto 0;
  23. padding: 30px;
  24. width: 700px;
  25. position: relative;
  26. }
  27. #main h1 {
  28. font-family: 'Ubuntu';
  29. font-size: 38px;
  30. letter-spacing: 2px;
  31. margin: 0 0 10px 0;
  32. padding: 0;
  33. }
  34. #main h2 {
  35. color: #999;
  36. font-size: 18px;
  37. letter-spacing: 3px;
  38. margin: 0 0 25px 0;
  39. padding: 0 0 0 0;
  40. }
  41. #main h3 {
  42. color: #999;
  43. margin-top: 24px;
  44. padding: 0 0 0 0;
  45. }
  46. #main h3 {
  47. font-size: 18px;
  48. }
  49. #main p {
  50. line-height: 25px;
  51. margin: 10px 0;
  52. }
  53. #main pre {
  54. background-color: #333;
  55. border-left: 1px solid #d8d8d8;
  56. border-top: 1px solid #d8d8d8;
  57. border-radius: 5px;
  58. color: #eee;
  59. padding: 10px;
  60. }
  61. #main div.warning {
  62. background-color: #feefb3;
  63. border: 1px solid;
  64. border-radius: 5px;
  65. color: #9f6000;
  66. padding: 10px;
  67. }
  68. #main ul {
  69. margin: 10px 0;
  70. padding: 0 30px;
  71. }
  72. #main li {
  73. margin: 5px 0;
  74. }
  75. </style>
  76. </head>
  77. <body>
  78. <div id="main">
  79. <?php if (Config::get('application.key') == ''): ?>
  80. <h1>Whoops!</h1>
  81. <br>
  82. <div class="warning">
  83. Please set an application key in <strong>application/config/application.php</strong>!
  84. </div>
  85. <?php else: ?>
  86. <h1>Welcome To Laravel</h1>
  87. <h2>A Framework For Web Artisans</h2>
  88. <p>
  89. You have successfully installed the Laravel framework. Laravel is a simple framework
  90. that helps web artisans create beautiful, creative applications using elegant, expressive
  91. syntax. You'll love using it.
  92. </p>
  93. <h3>Learn the terrain.</h3>
  94. <p>
  95. You've landed yourself on our default home page. The route that
  96. is generating this page lives at:
  97. </p>
  98. <pre><code>APP_PATH/routes.php</code></pre>
  99. <p>And the view sitting before you can be found at:</p>
  100. <pre><code>APP_PATH/views/home/index.php</code></pre>
  101. <h3>Create something beautiful.</h3>
  102. <p>
  103. Now that you're up and running, it's time to start creating!
  104. Here are some links to help you get started:
  105. </p>
  106. <ul>
  107. <li><a href="http://laravel.com">Official Website</a></li>
  108. <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
  109. <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
  110. </ul>
  111. <?php endif; ?>
  112. </div>
  113. </body>
  114. </html>