page.blade.php 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"
  3. data-textdirection="{{ $configData['direction'] === 'rtl' ? 'rtl' : 'ltr' }}">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  8. <meta name="csrf-token" content="{{ csrf_token() }}">
  9. <title>{{ Dcat\Admin\Admin::title() }} @if(! empty($header)) | {{ $header }}@endif</title>
  10. @if(! config('admin.disable_no_referrer_meta'))
  11. <meta name="referrer" content="no-referrer"/>
  12. @endif
  13. @if(! empty($favicon = Dcat\Admin\Admin::favicon()))
  14. <link rel="shortcut icon" href="{{ $favicon }}">
  15. @endif
  16. {!! admin_section(\AdminSection::HEAD) !!}
  17. {!! Dcat\Admin\Admin::assets()->renderCss() !!}
  18. {!! Dcat\Admin\Admin::assets()->renderHeaderJs() !!}
  19. <!--[if lt IE 9]>
  20. <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  21. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  22. <![endif]-->
  23. </head>
  24. @extends('admin::layouts.vertical')