master-layouts.blade.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!doctype html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title> @yield('title') | Skote - Admin & Dashboard Template</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta content="Premium Multipurpose Admin & Dashboard Template" name="description" />
  8. <meta content="Themesbrand" name="author" />
  9. <!-- App favicon -->
  10. <link rel="shortcut icon" href="{{ URL::asset('assets/images/favicon.ico') }}">
  11. @include('layouts.head-css')
  12. </head>
  13. @section('body')
  14. <body data-topbar="dark" data-layout="horizontal">
  15. @show
  16. <!-- Begin page -->
  17. <div id="layout-wrapper">
  18. @include('layouts.horizontal')
  19. <!-- ============================================================== -->
  20. <!-- Start right Content here -->
  21. <!-- ============================================================== -->
  22. <div class="main-content">
  23. <div class="page-content">
  24. <!-- Start content -->
  25. <div class="container-fluid">
  26. @yield('content')
  27. </div> <!-- content -->
  28. </div>
  29. @include('layouts.footer')
  30. </div>
  31. <!-- ============================================================== -->
  32. <!-- End Right content here -->
  33. <!-- ============================================================== -->
  34. </div>
  35. <!-- END wrapper -->
  36. <!-- Right Sidebar -->
  37. @include('layouts.right-sidebar')
  38. <!-- END Right Sidebar -->
  39. @include('layouts.vendor-scripts')
  40. </body>
  41. </html>