123456789101112131415161718192021222324252627282930313233 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <title></title>
- <meta name="viewport" content="width=device-width">
- {{ Asset::bundle('docs')->styles(); }}
- {{ Asset::bundle('docs')->scripts(); }}
- </head>
- <body>
- <div class="wrapper">
- <header>
- <h1>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>
- </header>
- <div role="main" class="main">
- <aside class="sidebar">
- @include('docs::menu')
- </aside>
- <div class="content">
- @yield('content')
- </div>
- </div>
- </div>
- </body>
- </html>
|