海工商新版后台
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.
 
 

28 lines
901 B

<!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>{{ Dcat\Admin\Admin::title() }} @if(! empty($header)) | {{ $header }}@endif</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>
@extends('admin::layouts.container')