blessing-skin-server/resources/views/admin/master.blade.php

21 lines
478 B
PHP
Raw Normal View History

2016-07-22 19:36:24 +08:00
<!DOCTYPE html>
2019-12-31 10:00:27 +08:00
<html lang="{{ locale }}">
2016-07-22 19:36:24 +08:00
<head>
2019-09-17 23:10:44 +08:00
@include('shared.head')
<title>@yield('title') - {{ option_localized('site_name') }}</title>
2016-07-22 19:36:24 +08:00
@yield('style')
</head>
2019-11-24 14:32:58 +08:00
<body class="hold-transition sidebar-mini">
2016-07-22 19:36:24 +08:00
<div class="wrapper">
2019-09-17 23:10:44 +08:00
@include('shared.header')
@include('shared.sidebar', ['scope' => 'admin'])
2016-07-22 19:36:24 +08:00
@yield('content')
2019-12-07 16:39:04 +08:00
@include('shared.footer')
2019-09-17 23:10:44 +08:00
</div>
2016-07-22 19:36:24 +08:00
2019-09-17 23:10:44 +08:00
@include('shared.foot')
2016-07-22 19:36:24 +08:00
@yield('script')
</body>
</html>