osb/resources/theme/frontend/metronic/layouts/app.blade.php

62 lines
1.6 KiB
PHP
Raw Normal View History

2017-12-04 12:37:14 +00:00
<!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]-->
2019-06-02 05:35:48 +00:00
@section('htmlheader')
@include('layouts.partials.htmlheader')
@show
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
<body class="corporate">
<div id="app">
<div class="wrapper">
@include('layouts.partials.mainheader')
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
@include('layouts.partials.sidebar')
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
@include('layouts.partials.contentheader')
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
<!-- Main content -->
<section class="content">
<!-- Your Page Content Here -->
<div class="main">
<div class="container">
@yield('breadcrumb')
2018-08-09 14:10:51 +00:00
2019-06-02 05:35:48 +00:00
<div class="row margin-bottom-40">
@yield('main-content')
</div>
</div>
2018-08-09 14:10:51 +00:00
</div>
2019-06-02 05:35:48 +00:00
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
@include('layouts.partials.controlsidebar')
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
@include('layouts.partials.footer')
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
</div><!-- ./wrapper -->
</div> <!-- ./app -->
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
@section('scripts')
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
{{-- BEGIN CORE PLUGINS (REQUIRED FOR ALL PAGES) --}}
@js('/site/js/jquery/1.11.2/js/jquery.min.js','jquery')
@js('/site/js/bootstrap/3.3.5/js/bootstrap.min.js','bootstrap-js','jquery')
@js('/site/js/jquery/plugins/migrate/1.2.1/js/jquery-migrate.min.js','jq-migrate','jquery')
@js('/site/js/jquery/plugins/back-to-top/back-to-top.js','back-to-top','jquery')
{{-- END CORE PLUGINS --}}
2018-05-20 12:53:14 +00:00
2019-06-02 05:35:48 +00:00
{{-- Scripts --}}
{!! Asset::scripts() !!}
2018-08-09 14:10:51 +00:00
2019-06-02 05:35:48 +00:00
@include('layouts.partials.scripts')
@yield('page-scripts')
@show
2017-12-04 12:37:14 +00:00
2019-06-02 05:35:48 +00:00
</body>
2018-07-31 04:11:00 +00:00
</html>