2018-04-16 00:00:49 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ app()->getLocale() }}">
|
|
|
|
<head>
|
2018-04-16 01:55:24 +00:00
|
|
|
|
2018-04-16 00:00:49 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
2018-04-17 01:26:53 +00:00
|
|
|
|
2018-06-02 18:11:08 +00:00
|
|
|
<meta name="robots" content="noimageindex, noarchive">
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
|
|
|
|
<title>{{ $title or config('app.name', 'Laravel') }}</title>
|
|
|
|
<meta property="og:site_name" content="{{ config('app.name', 'Laravel') }}">
|
|
|
|
<meta property="og:title" content="{{ $title or config('app.name', 'Laravel') }}">
|
|
|
|
<meta property="og:type" content="article">
|
|
|
|
<meta property="og:url" content="{{request()->url()}}">
|
|
|
|
|
2018-04-16 01:55:24 +00:00
|
|
|
@stack('meta')
|
2018-04-17 01:26:53 +00:00
|
|
|
|
2018-06-02 18:11:08 +00:00
|
|
|
<meta name="medium" content="image">
|
|
|
|
<meta name="theme-color" content="#10c5f8">
|
|
|
|
|
|
|
|
<link rel="canonical" href="{{request()->url()}}">
|
2018-04-16 00:00:49 +00:00
|
|
|
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
|
2018-04-17 01:26:53 +00:00
|
|
|
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.4.1/css/simple-line-icons.min.css" integrity="sha256-7O1DfUu4pybYI7uAATw34eDrgQaWGOfMV/8erfDQz/Q=" crossorigin="anonymous" />
|
2018-06-03 03:03:37 +00:00
|
|
|
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
|
2018-04-16 01:55:24 +00:00
|
|
|
@stack('styles')
|
2018-04-16 00:00:49 +00:00
|
|
|
</head>
|
2018-05-30 02:44:12 +00:00
|
|
|
<body class="">
|
|
|
|
@include('layouts.partial.nav')
|
2018-06-02 05:22:20 +00:00
|
|
|
<main id="content">
|
2018-05-30 02:44:12 +00:00
|
|
|
@yield('content')
|
|
|
|
</main>
|
2018-06-02 05:22:20 +00:00
|
|
|
@include('layouts.partial.footer')
|
2018-06-03 03:03:37 +00:00
|
|
|
<script type="text/javascript" src="{{ mix('js/app.js') }}"></script>
|
2018-04-16 01:55:24 +00:00
|
|
|
@stack('scripts')
|
2018-04-16 00:00:49 +00:00
|
|
|
</body>
|
|
|
|
</html>
|