| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!doctype html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
- <head>
- <meta charset="utf-8" />
- <title> @yield('title') | Skote - Admin & Dashboard Template</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta content="Premium Multipurpose Admin & Dashboard Template" name="description" />
- <meta content="Themesbrand" name="author" />
- <!-- App favicon -->
- <link rel="shortcut icon" href="{{ URL::asset('assets/images/favicon.ico') }}">
- @include('layouts.head-css')
- </head>
- @section('body')
- <body data-sidebar="dark">
- @show
- <!-- Begin page -->
- <div id="layout-wrapper">
- @include('layouts.header')
- <!-- ============================================================== -->
- <!-- Start right Content here -->
- <!-- ============================================================== -->
- <div class="page-content">
- <div class="container-fluid">
- @yield('content')
- </div>
- <!-- container-fluid -->
- <!-- End Page-content -->
- @include('layouts.footer')
- </div>
- <!-- end main content-->
- </div>
- <!-- END layout-wrapper -->
- <!-- Right Sidebar -->
- @include('layouts.right-sidebar')
- <!-- /Right-bar -->
- <!-- JAVASCRIPT -->
- @include('layouts.vendor-scripts')
- </body>
- </html>
|