123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Laravel - A Framework For Web Artisans</title>
- <style>
- @import url(http:
- body {
- background:
- color:
- font: normal normal normal 14px/1.253 Ubuntu, sans-serif;
- margin: 0 0 25px 0;
- min-width: 800px;
- padding: 0;
- }
-
- background-clip: padding-box;
- background-color:
- border:1px solid
- border-radius: 5px;
- box-shadow: 0 0 10px
- margin: 25px auto 0;
- padding: 30px;
- width: 700px;
- position: relative;
- }
-
- font-family: 'Ubuntu';
- font-size: 38px;
- letter-spacing: 2px;
- margin: 0 0 10px 0;
- padding: 0;
- }
-
- color:
- font-size: 18px;
- letter-spacing: 3px;
- margin: 0 0 25px 0;
- padding: 0 0 0 0;
- }
-
- color:
- margin-top: 24px;
- padding: 0 0 0 0;
- }
-
- font-size: 18px;
- }
-
- line-height: 25px;
- margin: 10px 0;
- }
-
- background-color:
- border-left: 1px solid
- border-top: 1px solid
- border-radius: 5px;
- color:
- padding: 10px;
- }
-
- margin: 10px 0;
- padding: 0 30px;
- }
-
- margin: 5px 0;
- }
- </style>
- </head>
- <body>
- <div id="main">
- <h1>Welcome To Laravel</h1>
- <h2>A Framework For Web Artisans</h2>
- <p>
- You have successfully installed the Laravel framework. Laravel is a simple framework
- that helps web artisans create beautiful, creative applications using elegant, expressive
- syntax. You'll love using it.
- </p>
- <h3>Learn the terrain.</h3>
- <p>
- You've landed yourself on our default home page. The route that
- is generating this page lives at:
- </p>
- <pre><code>APP_PATH/routes.php</code></pre>
- <p>And the view sitting before you can be found at:</p>
- <pre><code>APP_PATH/views/home/index.php</code></pre>
- <h3>Create something beautiful.</h3>
- <p>
- Now that you're up and running, it's time to start creating!
- Here are some links to help you get started:
- </p>
- <ul>
- <li><a href="http://laravel.com">Official Website</a></li>
- <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
- <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
- </ul>
- </div>
- </body>
- </html>
|