docs bundle in progress
This commit is contained in:
33
bundles/docs/views/template.blade.php
Normal file
33
bundles/docs/views/template.blade.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user