master-without-nav.blade.php 797 B

1234567891011121314151617181920212223
  1. <!doctype html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title> @yield('title') | Skote - Responsive Bootstrap 4 Admin Dashboard</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <!-- CSRF Token -->
  8. <meta name="csrf-token" content="{{ csrf_token() }}">
  9. <meta content="Premium Multipurpose Admin & Dashboard Template" name="description" />
  10. <meta content="Themesbrand" name="author" />
  11. <!-- App favicon -->
  12. <link rel="shortcut icon" href="{{ URL::asset('assets/images/favicon.ico')}}">
  13. @include('layouts.head-css')
  14. </head>
  15. @yield('body')
  16. @yield('content')
  17. @include('layouts.vendor-scripts')
  18. </body>
  19. </html>