-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtop_left.blade.php
55 lines (32 loc) · 1.1 KB
/
top_left.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}" dir="{{ backpack_theme_config('html_direction') }}">
<head>
@include(backpack_view('inc.head'))
</head>
<body class="{{ backpack_theme_config('classes.body') }}">
@include(backpack_view('inc.main_header'))
<div class="app-body">
@include(backpack_view('inc.sidebar'))
<main class="main pt-2">
@yield('before_breadcrumbs_widgets')
@includeWhen(isset($breadcrumbs), backpack_view('inc.breadcrumbs'))
@yield('after_breadcrumbs_widgets')
@yield('header')
<div class="container-fluid animated fadeIn">
@yield('before_content_widgets')
@yield('content')
@yield('after_content_widgets')
</div>
</main>
</div>{{-- ./app-body --}}
<footer class="{{ backpack_theme_config('classes.footer') }}">
@include(backpack_view('inc.footer'))
</footer>
@yield('before_scripts')
@stack('before_scripts')
@include(backpack_view('inc.scripts'))
@include(backpack_view('inc.theme_scripts'))
@yield('after_scripts')
@stack('after_scripts')
</body>
</html>