123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Welcome To Laravel!</title>
-
- <link href="http://fonts.googleapis.com/css?family=Quattrocento&v1" rel="stylesheet" type="text/css" media="all" />
- <link href="http://fonts.googleapis.com/css?family=Ubuntu&v1" rel="stylesheet" type="text/css" media="all" />
- <link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'>
- <style type="text/css">
- body {
- background-color: #eee;
- color: #6d6d6d;
- font-family: 'Ubuntu';
- font-size: 15px;
- }
- a {
- color: #7089b3;
- font-weight: bold;
- text-decoration: none;
- }
- h1.laravel {
- font-family: 'Lobster Two', Helvetica, serif;
- font-size: 60px;
- margin: 0 0 15px -10px;
- padding: 0;
- text-shadow: -1px 1px 1px #fff;
- }
- h2 {
- font-family: 'Quattrocento', serif;
- font-size: 30px;
- margin: 30px 0 0 0;
- padding: 0;
- text-shadow: -1px 1px 1px #fff;
- }
- p {
- margin: 10px 0 0 0;
- line-height: 25px;
- }
- #header {
- margin: 0 auto;
- margin-bottom: 15px;
- margin-top: 20px;
- width: 80%;
- }
- .wrapper {
- background-color: #fff;
- border-radius: 10px;
- margin: 0 auto;
- padding: 10px;
- width: 80%;
- }
- .wrapper h2:first-of-type {
- margin-top: 0;
- }
- .footer {
- background-color: #eee;
- text-align: right;
- font-size: 12px;
- color: #bbb;
- }
- </style>
- </head>
- <body>
- <div id="header">
- <h1 class="laravel">Laravel</h1>
- </div>
- <div class="wrapper">
- <h2>Installation Complete!</h2>
- <p>Ready to dig in? Start building your application in the <strong>application/routes.php</strong> file.</p>
- <p>Need to learn more? Peruse our <a href="http://laravel.com">wonderful documentation</a>.</p>
- </div>
- <div class="wrapper footer">
- <?php echo System\Benchmark::check('laravel').'ms | '.System\Benchmark::memory(); ?>
- </div>
- </body>
- </html>
|