1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <title>Laravel: A Framework For Web Artisans</title>
- <meta name="viewport" content="width=device-width">
- {{ HTML::style('laravel/css/style.css') }}
- </head>
- <body onload="prettyPrint()">
- <div class="wrapper">
- <header>
- <h1>Laravel</h1>
- <h2>A Framework For Web Artisans</h2>
- <p class="intro-text" style="margin-top: 45px;">
- </p>
- </header>
- <div role="main" class="main">
- <div class="home">
- <h2>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>{{ path('app') }}routes.php</pre>
- <p>And the view sitting before you can be found at:</p>
- <pre>{{ path('app') }}views/home/index.php</pre>
- <h2>Grow in knowledge.</h2>
- <p>
- Leaning to use Laravel is amazingly simple thanks to
- its {{ HTML::link('docs', 'wonderful documentation') }}.
- Here are the basics:
- </p>
- <ul>
- <li>{{ HTML::link('docs/routing#the-basics', 'Defining Routes') }}</li>
- <li>{{ HTML::link('docs/controllers#the-basics', 'Building Controllers') }}</li>
- <li>{{ HTML::link('docs/views#the-basics', 'Creating Views') }}</li>
- <li>{{ HTML::link('docs/database/eloquent', 'Eloquent ORM') }}</li>
- </ul>
- <h2>Create something beautiful.</h2>
- <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 class="out-links">
- <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>
- </div>
- </div>
- </body>
- </html>
|