42 lines
860 B
PHP
42 lines
860 B
PHP
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
|
|
<!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
|
|
<!--[if !IE]><!-->
|
|
<html lang="en">
|
|
<!--<![endif]-->
|
|
|
|
@section('htmlheader')
|
|
@include('layouts.partials.htmlheader')
|
|
@show
|
|
|
|
<!-- BODY BEGIN -->
|
|
<body class="corporate">
|
|
@include('layouts.partials.mainheader')
|
|
|
|
{{-- @include('layouts.partials.sidebar') --}}
|
|
{{-- No sidebar in this theme --}}
|
|
|
|
<div class="main">
|
|
<div class="container">
|
|
@include('layouts.partials.contentheader')
|
|
|
|
<div class="row margin-bottom-40">
|
|
<div class="col-md-9 col-sm-9">
|
|
@yield('main-content')
|
|
</div>
|
|
|
|
@include('layouts.partials.rightsidebar')
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@include('layouts.partials.footer')
|
|
|
|
@section('scripts')
|
|
@include('layouts.partials.scripts')
|
|
@show
|
|
</body>
|
|
<!-- BODY END -->
|
|
</html>
|