39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="h-full font-sans antialiased">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>{{ \Laravel\Nova\Nova::name() }}</title>
|
|
|
|
<link rel="shortcut icon" href="/favicon.png" type="image/png">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,800,800i,900,900i" rel="stylesheet">
|
|
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="{{ mix('app.css', 'vendor/nova') }}">
|
|
|
|
<!-- Custom Meta Data -->
|
|
@include('nova::partials.meta')
|
|
|
|
<!-- Theme Styles -->
|
|
@foreach(\Laravel\Nova\Nova::themeStyles() as $publicPath)
|
|
<link rel="stylesheet" href="{{ $publicPath }}">
|
|
@endforeach
|
|
</head>
|
|
<body class="bg-40 text-black h-full">
|
|
<div class="h-full">
|
|
<div class="px-view py-view mx-auto">
|
|
@yield('content')
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|