mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
34 lines
436 B
PHP
34 lines
436 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
|
|
@include('layouts.ecc.head')
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
|
|
@include('layouts.ecc.sidebar')
|
|
|
|
<div class="main-panel">
|
|
|
|
@include('layouts.ecc.header')
|
|
|
|
<div class="content">
|
|
<div class="container-fluid">
|
|
|
|
@yield('content')
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@include('layouts.ecc.footer')
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
@include('layouts.ecc.scripts')
|
|
|
|
@yield('custom_scripts')
|
|
|
|
</html>
|