index.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Welcome To Laravel!</title>
  6. <link href="http://fonts.googleapis.com/css?family=Quattrocento&amp;v1" rel="stylesheet" type="text/css" media="all" />
  7. <link href="http://fonts.googleapis.com/css?family=Ubuntu&amp;v1" rel="stylesheet" type="text/css" media="all" />
  8. <link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'>
  9. <style type="text/css">
  10. body {
  11. background-color: #eee;
  12. color: #6d6d6d;
  13. font-family: 'Ubuntu';
  14. font-size: 15px;
  15. }
  16. a {
  17. color: #7089b3;
  18. font-weight: bold;
  19. text-decoration: none;
  20. }
  21. h1.laravel {
  22. font-family: 'Lobster Two', Helvetica, serif;
  23. font-size: 60px;
  24. margin: 0 0 15px -10px;
  25. padding: 0;
  26. text-shadow: -1px 1px 1px #fff;
  27. }
  28. h2 {
  29. font-family: 'Quattrocento', serif;
  30. font-size: 30px;
  31. margin: 30px 0 0 0;
  32. padding: 0;
  33. text-shadow: -1px 1px 1px #fff;
  34. }
  35. p {
  36. margin: 10px 0 0 0;
  37. line-height: 25px;
  38. }
  39. #header {
  40. margin: 0 auto;
  41. margin-bottom: 15px;
  42. margin-top: 20px;
  43. width: 80%;
  44. }
  45. .wrapper {
  46. background-color: #fff;
  47. border-radius: 10px;
  48. margin: 0 auto;
  49. padding: 10px;
  50. width: 80%;
  51. }
  52. .wrapper h2:first-of-type {
  53. margin-top: 0;
  54. }
  55. .footer {
  56. background-color: #eee;
  57. text-align: right;
  58. font-size: 12px;
  59. color: #bbb;
  60. }
  61. </style>
  62. </head>
  63. <body>
  64. <div id="header">
  65. <h1 class="laravel">Laravel</h1>
  66. </div>
  67. <div class="wrapper">
  68. <h2>Installation Complete!</h2>
  69. <p>Ready to dig in? Start building your application in the <strong>application/routes.php</strong> file.</p>
  70. <p>Need to learn more? Peruse our <a href="http://laravel.com">wonderful documentation</a>.</p>
  71. </div>
  72. <div class="wrapper footer">
  73. <?php echo System\Benchmark::check('laravel').'ms | '.System\Benchmark::memory(); ?>
  74. </div>
  75. </body>
  76. </html>