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

42 lines
860 B
PHP
Raw Permalink Normal View History

<!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]-->
2017-08-05 23:53:57 +00:00
@section('htmlheader')
@include('layouts.partials.htmlheader')
@show
2017-08-05 23:53:57 +00:00
<!-- BODY BEGIN -->
<body class="corporate">
@include('layouts.partials.mainheader')
2017-08-05 23:53:57 +00:00
{{-- @include('layouts.partials.sidebar') --}}
{{-- No sidebar in this theme --}}
2017-08-05 23:53:57 +00:00
<div class="main">
<div class="container">
@include('layouts.partials.contentheader')
2017-08-05 23:53:57 +00:00
<div class="row margin-bottom-40">
<div class="col-md-9 col-sm-9">
@yield('main-content')
</div>
2017-08-05 23:53:57 +00:00
@include('layouts.partials.rightsidebar')
</div>
2017-08-05 23:53:57 +00:00
</div>
</div>
2017-08-05 23:53:57 +00:00
@include('layouts.partials.footer')
2017-08-05 23:53:57 +00:00
@section('scripts')
@include('layouts.partials.scripts')
@show
</body>
<!-- BODY END -->
</html>