Implement creator studio and upload updates
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
@php
|
||||
$gridVersion = request()->query('grid') === 'v2' ? 'v2' : 'v1';
|
||||
$deferToolbarSearch = request()->routeIs('index');
|
||||
$metaDescription = trim($__env->yieldContent('meta-description', $page_meta_description ?? ''));
|
||||
$metaKeywords = trim($__env->yieldContent('meta-keywords', $page_meta_keywords ?? ''));
|
||||
$isInertiaPage = isset($page) && is_array($page);
|
||||
$shouldRenderBladeSeo = ($useUnifiedSeo ?? false) && (($renderBladeSeo ?? false) || ! $isInertiaPage);
|
||||
$novaViteEntries = [
|
||||
'resources/css/app.css',
|
||||
'resources/css/nova-grid.css',
|
||||
@@ -17,25 +17,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ app()->getLocale() }}" data-grid-version="{{ $gridVersion }}">
|
||||
<head>
|
||||
<title>{{ $page_title ?? 'Skinbase' }}</title>
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<meta name="description" content="{{ $metaDescription }}">
|
||||
<meta name="keywords" content="{{ $metaKeywords }}">
|
||||
@isset($page_robots)
|
||||
<meta name="robots" content="{{ $page_robots }}" />
|
||||
@endisset
|
||||
@isset($page_canonical)
|
||||
<link rel="canonical" href="{{ $page_canonical }}" />
|
||||
@endisset
|
||||
@isset($page_rel_prev)
|
||||
<link rel="prev" href="{{ $page_rel_prev }}" />
|
||||
@endisset
|
||||
@isset($page_rel_next)
|
||||
<link rel="next" href="{{ $page_rel_next }}" />
|
||||
@endisset
|
||||
@if($shouldRenderBladeSeo)
|
||||
@include('partials.seo.head', ['seo' => $seo ?? null])
|
||||
@endif
|
||||
|
||||
{{-- Global RSS feed discovery --}}
|
||||
<link rel="alternate" type="application/rss+xml" title="Skinbase Latest Artworks" href="{{ url('/rss') }}">
|
||||
@@ -105,7 +92,7 @@
|
||||
</script>
|
||||
@endif
|
||||
|
||||
@if(isset($page) && is_array($page))
|
||||
@if($isInertiaPage)
|
||||
@inertiaHead
|
||||
@endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user