index.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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=Ubuntu" rel="stylesheet" type="text/css" media="all" />
  7. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  8. <style type="text/css">
  9. body {
  10. background-color: #fff;
  11. font-family: 'Ubuntu', sans-serif;
  12. font-size: 16px;
  13. color: #3f3f3f;
  14. }
  15. h1 {
  16. font-size: 40px;
  17. color: #6d6d6d;
  18. margin: 0 0 10px 0;
  19. text-shadow: 1px 1px #000;
  20. }
  21. a {
  22. color: #000;
  23. }
  24. #wrapper {
  25. width: 740px;
  26. }
  27. #content {
  28. padding: 10px 10px 10px 10px;
  29. background-color: #eee;
  30. border-radius: 10px;
  31. }
  32. #footer {
  33. font-size: 12px;
  34. padding-top: 10px;
  35. text-align: right;
  36. }
  37. </style>
  38. <script type="text/javascript">
  39. $(document).ready(function(){
  40. $(window).resize(function(){
  41. $('#wrapper').css({
  42. position:'absolute',
  43. left: ($(window).width() - $('#wrapper').outerWidth()) / 2,
  44. top: ($(window).height() - $('#wrapper').outerHeight()) / 3
  45. });
  46. });
  47. $(window).resize();
  48. });
  49. </script>
  50. </head>
  51. <body>
  52. <div id="wrapper">
  53. <h1>Laravel</h1>
  54. <div id="content">
  55. You have successfully installed Laravel.
  56. <br /><br />
  57. Perhaps you would like to <a href="http://laravel.com/docs">peruse the documentation</a> or <a href="http://github.com/taylorotwell/laravel">contribute on GitHub</a>?
  58. </div>
  59. <div id="footer">
  60. <?php echo Benchmark::memory(); ?>mb &middot; <?php echo Benchmark::check('laravel'); ?>ms
  61. </div>
  62. </div>
  63. </body>
  64. </html>