Clean layout doesn't need dashboard class and was missing head
This commit is contained in:
@@ -1,8 +1,43 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
@include('dashboard.partials.head')
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
|
|
||||||
<body class="dashboard @yield('bodyClass')">
|
<meta name="env" content="{{ app('env') }}">
|
||||||
|
<meta name="token" content="{{ csrf_token() }}">
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="/img/favicon.ico">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.png" type="image/x-icon">
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon" href="/img/apple-touch-icon.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="57x57" href="/img/apple-touch-icon-57x57.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="72x72" href="/img/apple-touch-icon-72x72.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="114x114" href="/img/apple-touch-icon-114x114.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="120x120" href="/img/apple-touch-icon-120x120.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="144x144" href="/img/apple-touch-icon-144x144.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="152x152" href="/img/apple-touch-icon-152x152.png">
|
||||||
|
|
||||||
|
<title>{{ $page_title or $site_title }}</title>
|
||||||
|
|
||||||
|
@if($enable_external_dependencies)
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&subset={{ $font_subset }}" rel="stylesheet" type="text/css">
|
||||||
|
@endif
|
||||||
|
<link rel="stylesheet" href="{{ elixir('dist/css/all.css') }}">
|
||||||
|
@yield('css')
|
||||||
|
|
||||||
|
@include('partials.crowdin')
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var Global = {};
|
||||||
|
Global.locale = '{{ $app_locale }}';
|
||||||
|
</script>
|
||||||
|
<script src="{{ elixir('dist/js/all.js') }}"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="@yield('bodyClass')">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
@yield('content')
|
@yield('content')
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user