1234567891011121314151617 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1"/>
- <link type="text/css" href="{{ URL::asset('../resources/sass/css.css') }}" rel="stylesheet">
- <title>@section('title') Default title @show</title>
- </head>
- <body>
- @include('partials.header')
- <div style="margin-top:110px;">
- @yield('content')
- </div>
- </body>
- </html>
|