Последняя версия с сервера прошлого разработчика
This commit is contained in:
31
nova/resources/views/auth/layout.blade.php
Executable file
31
nova/resources/views/auth/layout.blade.php
Executable file
@@ -0,0 +1,31 @@
|
||||
<!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>
|
||||
|
||||
<!-- 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>
|
||||
Reference in New Issue
Block a user