first commit
This commit is contained in:
37
wave/resources/views/do.blade.php
Normal file
37
wave/resources/views/do.blade.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user