index.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. font-size: 12px;
  58. text-align: right;
  59. }
  60. </style>
  61. </head>
  62. <body>
  63. <div id="header">
  64. <h1 class="laravel">Laravel</h1>
  65. </div>
  66. <div class="wrapper">
  67. <h2>Installation Complete!</h2>
  68. <p>Ready to dig in? Start building your application in the <strong>application/routes.php</strong> file.</p>
  69. <p>Need to learn more? Peruse our <a href="http://laravel.com">wonderful documentation</a>.</p>
  70. </div>
  71. <div class="wrapper footer">
  72. <?php echo Benchmark::check('laravel').'ms | '.Benchmark::memory().'mb'; ?>
  73. </div>
  74. </body>
  75. </html>