Initial Commit
The initial public commit of MVGL website code.
This commit is contained in:
commit
b39ecf1638
2043 changed files with 215154 additions and 0 deletions
51
resources/views/layout/demo1/master.blade.php
Normal file
51
resources/views/layout/demo1/master.blade.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
@extends('base.base')
|
||||
|
||||
@section('content')
|
||||
|
||||
<!--begin::Main-->
|
||||
@if (theme()->getOption('layout', 'main/type') === 'blank')
|
||||
<div class="d-flex flex-column flex-root">
|
||||
{{ $slot }}
|
||||
</div>
|
||||
@else
|
||||
<!--begin::Root-->
|
||||
<div class="d-flex flex-column flex-root">
|
||||
<!--begin::Page-->
|
||||
<div class="page d-flex flex-row flex-column-fluid">
|
||||
@if( theme()->getOption('layout', 'aside/display') === true )
|
||||
{{ theme()->getView('layout/aside/_base') }}
|
||||
@endif
|
||||
|
||||
<!--begin::Wrapper-->
|
||||
<div class="wrapper d-flex flex-column flex-row-fluid" id="kt_wrapper">
|
||||
{{ theme()->getView('layout/header/_base') }}
|
||||
|
||||
<!--begin::Content-->
|
||||
<div class="content d-flex flex-column flex-column-fluid {{ theme()->printHtmlClasses('content', false) }}" id="kt_content">
|
||||
@if (theme()->getOption('layout', 'toolbar/display') === true)
|
||||
{{ theme()->getView('layout/toolbars/_' . theme()->getOption('layout', 'toolbar/layout')) }}
|
||||
@endif
|
||||
|
||||
<!--begin::Post-->
|
||||
<div class="post d-flex flex-column-fluid" id="kt_post">
|
||||
{{ theme()->getView('layout/_content', compact('slot')) }}
|
||||
</div>
|
||||
<!--end::Post-->
|
||||
</div>
|
||||
<!--end::Content-->
|
||||
|
||||
{{ theme()->getView('layout/_footer') }}
|
||||
</div>
|
||||
<!--end::Wrapper-->
|
||||
</div>
|
||||
<!--end::Page-->
|
||||
</div>
|
||||
<!--end::Root-->
|
||||
|
||||
@if(theme()->getOption('layout', 'scrolltop/display') === true)
|
||||
{{ theme()->getView('layout/_scrolltop') }}
|
||||
@endif
|
||||
@endif
|
||||
<!--end::Main-->
|
||||
|
||||
@endsection
|
Loading…
Add table
Add a link
Reference in a new issue