38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ app()->getLocale() }}">
|
|
<head>
|
|
|
|
@if(isset($seo->title))
|
|
<title>{{ $seo->title }}</title>
|
|
@else
|
|
<title>{{ setting('site.title', 'Laravel Wave') . ' - ' . setting('site.description', 'The Software as a Service Starter Kit built on Laravel & Voyager') }}</title>
|
|
@endif
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge"> <!-- † -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<meta name="url" content="{{ url('/') }}">
|
|
|
|
<link rel="icon" href="/wave/favicon.png" type="image/x-icon">
|
|
|
|
<meta name="robots" content="noindex,nofollow">
|
|
<meta name="googlebot" content="noindex,nofollow">
|
|
|
|
@if(isset($seo->description))
|
|
<meta name="description" content="{{ $seo->description }}">
|
|
@endif
|
|
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.0.4/tailwind.min.css">
|
|
@livewireStyles
|
|
</head>
|
|
<body>
|
|
|
|
@livewire('wave.deploy-to-do')
|
|
|
|
@livewireScripts
|
|
|
|
</body>
|
|
</html>
|