21 lines
468 B
PHP
21 lines
468 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
@include('shared.head')
|
|
<title>@yield('title') - {{ option_localized('site_name') }}</title>
|
|
@yield('style')
|
|
</head>
|
|
|
|
<body class="hold-transition sidebar-mini">
|
|
<div class="wrapper">
|
|
@include('shared.header')
|
|
@include('shared.sidebar', ['scope' => 'admin'])
|
|
@yield('content')
|
|
@include('shared.footer')
|
|
</div>
|
|
|
|
@include('shared.foot')
|
|
@yield('script')
|
|
</body>
|
|
</html>
|