Files
spa-api/bundles/docs/views/template.blade.php

35 lines
908 B
PHP
Raw Normal View History

2012-04-01 22:45:19 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
2012-04-02 10:03:02 +01:00
<title>Laravel: A Framework For Web Artisans</title>
2012-04-01 22:45:19 +01:00
<meta name="viewport" content="width=device-width">
2012-04-02 19:48:26 +01:00
{{ Asset::styles(); }}
{{ Asset::scripts(); }}
2012-04-01 22:45:19 +01:00
</head>
2012-04-02 10:03:02 +01:00
<body onload="prettyPrint()">
2012-04-01 22:45:19 +01:00
<div class="wrapper">
<header>
<h1>Laravel</h1>
<h2>A Framework For Web Artisans</h2>
<p class="intro-text">
2012-04-01 22:45:19 +01:00
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">
2012-04-02 11:02:09 -05:00
{{ $sidebar }}
2012-04-01 22:45:19 +01:00
</aside>
<div class="content">
2012-04-02 10:03:02 +01:00
@yield('content')
2012-04-01 22:45:19 +01:00
</div>
2012-04-02 10:03:02 +01:00
</div>
2012-04-01 22:45:19 +01:00
</div>
2012-04-02 19:48:26 +01:00
{{ Asset::container('footer')->scripts(); }}
2012-04-01 22:45:19 +01:00
</body>
2012-04-02 10:03:02 +01:00
</html>