app.blade.php
3.26 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html class="no-js" lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>@yield('title', app_name())</title>
<!-- Meta -->
<meta name="description" content="@yield('meta_description', 'Default Description')">
<meta name="author" content="@yield('meta_author', 'Anthony Rappa')">
@yield('meta')
<!-- Styles -->
@yield('before-styles')
<!-- Check if the language is set to RTL, so apply the RTL layouts -->
<!-- Otherwise apply the normal LTR layouts -->
@langRTL
{{ Html::style(getRtlCss(mix('css/style.css'))) }}
{{ Html::style(getRtlCss(mix('css/backend.css'))) }}
{{ Html::style(getRtlCss(mix('css/bootstrap.min.css'))) }}
@else
{{ Html::style(mix('css/backend.css')) }}
@endif
@yield('after-styles')
{{ Html::style(getRtlCss('css/datatables.min.css')) }}
<!-- Html5 Shim and Respond.js IE8 support of Html5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
{{ Html::script('https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js') }}
{{ Html::script('https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js') }}
<!--{{ Html::script('http://map.qq.com/api/js?v=2.exp') }}-->
<![endif]-->
<!-- Scripts -->
<script>
window.Laravel = <?php echo json_encode([
'csrfToken' => csrf_token(),
]); ?>
</script>
</head>
<body class="skin-{{ config('backend.theme') }} {{ config('backend.layout') }}">
@include('includes.partials.logged-in-as')
<div class="wrapper">
@include('backend.includes.header')
@include('backend.includes.sidebar')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
@yield('page-header')
{{-- Change to Breadcrumbs::render() if you want it to error to remind you to create the breadcrumbs for the given route --}}
{!! Breadcrumbs::renderIfExists() !!}
</section>
<!-- Main content -->
<section class="content">
<div class="loader" style="display: none;">
<div class="ajax-spinner ajax-skeleton"></div>
</div><!--loader-->
@include('includes.partials.messages')
@yield('content')
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
@include('backend.includes.footer')
</div><!-- ./wrapper -->
<!-- JavaScripts -->
@yield('before-scripts')
{{ Html::script(mix('js/backend.js')) }}
{{ Html::script('js/datatables.min.js') }}
@yield('after-scripts')
</body>
</html>