| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- CSRF Token -->
- <meta name="csrf-token" content="{{ csrf_token() }}">
- <title>{{ config('app.name', 'Vien Blog') }} Admin</title>
- <!-- Scripts -->
- {{--<script src="{{ asset('js/app.js') }}" defer></script>--}}
- <!-- Fonts -->
- {{--<link rel="dns-prefetch" href="https://fonts.gstatic.com">--}}
- {{--<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600" rel="stylesheet" type="text/css">--}}
- <!-- Styles -->
- <link href="{{ asset('css/default.css') }}" rel="stylesheet">
- <link href="{{ asset('css/admin.css') }}" rel="stylesheet">
- </head>
- <body>
- <div id="app">
- @include('admin.layouts.header')
- <main class="py-4">
- @yield('content')
- </main>
- </div>
- </body>
- </html>
|