main.blade.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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-sidebar="dark">
  15. @show
  16. <!-- Begin page -->
  17. <div id="layout-wrapper">
  18. @include('layouts.header')
  19. <!-- ============================================================== -->
  20. <!-- Start right Content here -->
  21. <!-- ============================================================== -->
  22. <div class="page-content">
  23. <div class="container-fluid">
  24. @yield('content')
  25. </div>
  26. <!-- container-fluid -->
  27. <!-- End Page-content -->
  28. @include('layouts.footer')
  29. </div>
  30. <!-- end main content-->
  31. </div>
  32. <!-- END layout-wrapper -->
  33. <!-- Right Sidebar -->
  34. @include('layouts.right-sidebar')
  35. <!-- /Right-bar -->
  36. <!-- JAVASCRIPT -->
  37. @include('layouts.vendor-scripts')
  38. </body>
  39. </html>