You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
50 lines
1.4 KiB
<!DOCTYPE html> |
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> |
|
|
|
<head> |
|
<meta charset="utf-8"> |
|
<meta http-equiv="X-UA-Compatible" content="chrome=1,IE=edge"> |
|
{{-- 默认使用谷歌浏览器内核--}} |
|
<meta name="renderer" content="webkit"> |
|
<meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|
|
|
<title>@if(! empty($header)){{ $header }} | @endif {{ Dcat\Admin\Admin::title() }}</title> |
|
|
|
@if(! config('admin.disable_no_referrer_meta')) |
|
<meta name="referrer" content="no-referrer"/> |
|
@endif |
|
|
|
@if(! empty($favicon = Dcat\Admin\Admin::favicon())) |
|
<link rel="shortcut icon" href="{{$favicon}}"> |
|
@endif |
|
|
|
{!! admin_section(Dcat\Admin\Admin::SECTION['HEAD']) !!} |
|
|
|
{!! Dcat\Admin\Admin::asset()->headerJsToHtml() !!} |
|
|
|
{!! Dcat\Admin\Admin::asset()->cssToHtml() !!} |
|
</head> |
|
|
|
<body class="dcat-admin-body full-page {{ $configData['body_class'] }}"> |
|
|
|
<script> |
|
var Dcat = CreateDcat({!! Dcat\Admin\Admin::jsVariables() !!}); |
|
</script> |
|
|
|
{{-- 页面埋点 --}} |
|
{!! admin_section(Dcat\Admin\Admin::SECTION['BODY_INNER_BEFORE']) !!} |
|
|
|
<div class="app-content content"> |
|
<div class="wrapper" id="{{ $pjaxContainerId }}"> |
|
@yield('app') |
|
</div> |
|
</div> |
|
|
|
{!! admin_section(Dcat\Admin\Admin::SECTION['BODY_INNER_AFTER']) !!} |
|
|
|
{!! Dcat\Admin\Admin::asset()->jsToHtml() !!} |
|
|
|
<script>Dcat.boot();</script> |
|
|
|
</body> |
|
</html> |