This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/resources/theme/frontend/metronic/layouts/app.blade.php
Deon George c7e2a6866e WIP
2017-11-21 21:47:44 +11:00

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>