123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="renderer" content="webkit">
- <meta name="referrer" content="always">
- <title>{{ $seoData['title'] ?? '' }}</title>
- <meta name="keywords" content="{{ $seoData['keywords'] ?? '' }}" />
- <meta name="description" content="{{ $seoData['description'] ?? '' }}" />
- <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <link rel="icon" href="/favicon.ico">
- @section('head_css')
- @show
- </head>
- @section('body')
- <body>
- @yield('content')
- @section('footer')
- @show
- @section('plugins_js')
- @show
- @section('footer_js')
- @show
- </body>
- @show
- </html>
|