chess/resources/views/components/master/layout.blade.php

45 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2024-08-29 03:56:32 +00:00
<!--begin::Main-->
<!--[html-partial:include:{"file":"partials/_header-mobile.html"}]/-->
<x-master.header_mobile />
<div class="d-flex flex-column flex-root">
<!--begin::Page-->
<div class="d-flex flex-row flex-column-fluid page">
<!--begin::Wrapper-->
<div class="d-flex flex-column flex-row-fluid wrapper" id="kt_wrapper">
<!--[html-partial:include:{"file":"partials/_header.html"}]/-->
<x-master.header />
<!--begin::Content-->
<div class="content d-flex flex-column flex-column-fluid" id="kt_content">
<!--[html-partial:include:{"file":"partials/_subheader/subheader-v1.html"}]/-->
<div class="d-flex flex-column-fluid">
<!--begin::Container-->
<div class="container-fluid" id="pageLoad">
<!--Content area here-->
@yield('content')
<!--end::Content-->
</div>
<!--end::Container-->
</div>
</div>
<!--[html-partial:include:{"file":"partials/_footer.html"}]/-->
<x-master.footer />
</div>
<!--end::Wrapper-->
</div>
<!--end::Page-->
</div>
<!--end::Main-->