1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <!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;
- font-size: 12px;
- text-align: right;
- }
- </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 Benchmark::check('laravel').'ms | '.Benchmark::memory().'mb'; ?>
- </div>
- </body>
- </html>
|