| Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/resources/views/default/blog/ |
| Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/resources/views/default/blog/app.blade.php |
<!DOCTYPE html>
<html
class="max-sm:overflow-x-hidden"
lang="{{ LaravelLocalization::getCurrentLocale() }}"
dir="{{ LaravelLocalization::getCurrentLocaleDirection() }}"
>
<head>
<meta charset="UTF-8" />
<meta
http-equiv="X-UA-Compatible"
content="IE=edge"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
@if (isset($hero['type']))
@if (isset($setting->meta_description))
<meta
name="description"
content="{{ $setting->meta_description }}"
>
@endif
@if (isset($setting->meta_keywords))
<meta
name="keywords"
content="{{ $setting->meta_keywords }}"
>
@endif
@else
@if (isset($post->seo_title))
<meta
name="description"
content="{{ $post->seo_title }}"
>
@else
@if (isset($setting->meta_description))
<meta
name="description"
content="{{ $setting->meta_description }}"
>
@endif
@endif
@if (isset($post->seo_description))
<meta
name="keywords"
content="{{ $post->seo_description }}"
>
@else
@if (isset($setting->meta_keywords))
<meta
name="keywords"
content="{{ $setting->meta_keywords }}"
>
@endif
@endif
@endif
<link
rel="icon"
href="{{ custom_theme_url($setting->favicon_path ?? 'assets/favicon.ico') }}"
>
<title>
@if (isset($hero['type']))
@if ($hero['type'] == 'blog')
{{ $hero['title'] }}
@elseif($hero['type'] == 'category')
{{ ucfirst($hero['title']) }}
@elseif($hero['type'] == 'tag')
{{ ucfirst($hero['title']) }}
@elseif($hero['type'] == 'author')
{{ ucfirst(App\Models\User::where('id', $hero['title'])->first()->name) }}
@endif
@else
@if (isset($post->title))
{{ $post?->title }}
@else
{{ $setting->site_name }}
@endif
@endif | {{ $setting->site_name }}
</title>
<link
rel="preconnect"
href="https://fonts.googleapis.com"
>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
>
<link
href="https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&display=swap"
rel="stylesheet"
>
<link
rel="stylesheet"
href="{{ custom_theme_url('assets/css/frontend/flickity.min.css') }}"
>
@php
$link = 'resources/views/' . get_theme() . '/scss/landing-page.scss';
@endphp
@vite($link)
@if ($setting->frontend_custom_css != null)
<link
rel="stylesheet"
href="{{ $setting->frontend_custom_css }}"
/>
@endif
@if ($setting->frontend_code_before_head != null)
{!! $setting->frontend_code_before_head !!}
@endif
<script>
window.liquid = {
isLandingPage: true
};
</script>
@if (setting('additional_custom_css') != null)
{!! setting('additional_custom_css') !!}
@endif
</head>
<body class="text-body group/body bg-background font-body">
<script src="{{ custom_theme_url('assets/js/tabler-theme.min.js') }}"></script>
<script src="{{ custom_theme_url('assets/js/navbar-shrink.js') }}"></script>
<div
class="fixed left-0 right-0 top-0 z-[99] opacity-0 transition-opacity"
id="app-loading-indicator"
>
<div class="progress [--tblr-progress-height:3px]">
<div class="progress-bar progress-bar-indeterminate bg-[--tblr-primary] before:[animation-timing-function:ease-in-out] dark:bg-white">
</div>
</div>
</div>
@include('blog.header')
@yield('content')
@include('blog.footer')
@if ($setting->frontend_custom_js != null)
<script src="{{ custom_theme_url($setting->frontend_custom_js) }}"></script>
@endif
@if ($setting->frontend_code_before_body != null)
{!! $setting->frontend_code_before_body !!}
@endif
<script src="{{ custom_theme_url('assets/libs/vanillajs-scrollspy.min.js') }}"></script>
<script src="{{ custom_theme_url('assets/libs/flickity.pkgd.min.js') }}"></script>
<script src="{{ custom_theme_url('assets/js/frontend.js') }}"></script>
<script src="{{ custom_theme_url('assets/js/frontend/frontend-animations.js') }}"></script>
@if ($setting->gdpr_status == 1)
<script src="{{ custom_theme_url('assets/js/gdpr.js') }}"></script>
@endif
</body>
</html>