123movies-seo/resources/views/layouts/layout.blade.php

101 lines
5.3 KiB
PHP
Raw Normal View History

2024-08-24 23:08:42 +03:00
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google" content="notranslate">
<meta property="og:url" content="{{url()->current()}}">
<meta property="og:title" content="{{$meta['title']}}">
<meta property="og:description" content="{{$meta['description']}}">
<meta property="og:type" content="website">
<meta property="og:site_name" content="{{ config('app.name') }}">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="{{url()->current()}}">
<link href="{{ asset('images/favicon.png') }}" rel="icon" type="image/png">
<title>{{$meta['title']}}</title>
<meta name="description" content="{{$meta['description']}}">
<meta property="og:image" content="{{$meta['image']}}" />
<meta property="twitter:image" content="{{$meta['image']}}" />
@if($meta['keywords'])
<meta name="keywords" content="{{$meta['keywords']}}">
@endif
2024-08-26 04:25:22 +03:00
{{-- <meta http-equiv="x-dns-prefetch-control" content="on"> --}}
{{-- <meta http-equiv="x-preconnect-control" content="on"> --}}
{{-- <link rel="dns-prefetch" href="//i1.wp.com"> --}}
{{-- <link rel="preconnect" href="//i1.wp.com"> --}}
2024-08-25 19:25:11 +03:00
{{-- <link rel="preconnect" href="https://fonts.googleapis.com" crossorigin> --}}
2024-08-26 04:25:22 +03:00
{{-- <link rel="dns-prefetch" href="//fonts.gstatic.com"> --}}
{{-- <link rel="dns-prefetch" href="//code.jquery.com"> --}}
{{-- <link rel="dns-prefetch" href="//cdnjs.cloudflare.com"> --}}
{{-- <link rel="preconnect" href="//fonts.gstatic.com">
<link rel="preconnect" href="//cdnjs.cloudflare.com">
<link rel="preconnect" href="//code.jquery.com"> --}}
2024-08-25 19:25:11 +03:00
{{-- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600&display=swap" crossorigin> --}}
2024-08-24 23:08:42 +03:00
{{-- @vite(['resources/js/app.js']) --}}
2024-08-26 04:25:22 +03:00
{{-- <style>
2024-08-25 21:00:17 +03:00
{!! Vite::content('resources/scss/google-fonts.scss') !!}
{!! Vite::content('resources/scss/fa.scss') !!}
{!! Vite::content('resources/scss/la.scss') !!}
2024-08-26 04:25:22 +03:00
</style> --}}
@vite(['resources/js/img.js'])
2024-08-25 22:19:27 +03:00
{{-- <link rel="preload" as="script" href="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> --}}
2024-08-26 04:25:22 +03:00
{{-- <style> --}}
<link rel="preload" as="image" type="image/svg" href="{{asset('images/logo.svg')}}" fetchpriority="high"/>
@vite(['resources/scss/app.scss','resources/scss/google-fonts.scss'])
2024-08-25 21:58:11 +03:00
2024-08-25 23:48:32 +03:00
{{-- @vite(['resources/js/jqfix.js']) --}}
2024-08-25 22:19:27 +03:00
{{-- @vite(['resources/js/app.js']) --}}
2024-08-24 23:08:42 +03:00
@yield('head')
@yield('schema')
@stack('head')
2024-08-25 21:08:37 +03:00
2024-08-25 20:48:48 +03:00
{{-- , 'resources/vendor/css/fontawesome-all.min.css',
'resources/vendor/css/line-awesome.min.css',]) --}}
2024-08-24 23:08:42 +03:00
</head>
<body @stack('context')>
<!-- preloader start -->
<div id="preloader">
<div class="pre-logo">
<div class="gif">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><radialGradient id="a12" cx=".66" fx=".66" cy=".3125" fy=".3125" gradientTransform="scale(1.5)"><stop offset="0" stop-color="#03CF03"></stop><stop offset=".3" stop-color="#03CF03" stop-opacity=".9"></stop><stop offset=".6" stop-color="#03CF03" stop-opacity=".6"></stop><stop offset=".8" stop-color="#03CF03" stop-opacity=".3"></stop><stop offset="1" stop-color="#03CF03" stop-opacity="0"></stop></radialGradient><circle transform-origin="center" fill="none" stroke="url(#a12)" stroke-width="20" stroke-linecap="round" stroke-dasharray="200 1000" stroke-dashoffset="0" cx="100" cy="100" r="70"><animateTransform type="rotate" attributeName="transform" calcMode="spline" dur="0.7" values="360;0" keyTimes="0;1" keySplines="0 0 1 1" repeatCount="indefinite"></animateTransform></circle><circle transform-origin="center" fill="none" opacity=".2" stroke="#03CF03" stroke-width="20" stroke-linecap="round" cx="100" cy="100" r="70"></circle></svg>
</div>
</div>
</div>
<!-- preloader end -->
<div class="page-wrapper" id="main-scrollbar" data-scrollbar>
@include('components.nav')
@yield('app')
<div class="loading"></div>
</div>
{{-- <header class="container-fluid bg-white shadow" id="header">
@include('components.nav')
</header>
<main class="container-md">
@yield('content')
</main> --}}
@include('components.footer')
{{-- @include('components.svg') --}}
{{-- @vite(['resources/js/img.js']) --}}
2024-08-25 22:33:45 +03:00
{{-- <script type="module">
2024-08-25 22:19:27 +03:00
{!! Vite::content('resources/js/img.js')!!}
2024-08-25 22:33:45 +03:00
</script> --}}
2024-08-24 23:08:42 +03:00
{{-- <script type='text/javascript' src='https://code.jquery.com/jquery-3.7.1.min.js'></script> --}}
2024-08-26 01:03:16 +03:00
{{-- <link rel="preload" as="script" href="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"> --}}
2024-08-26 04:25:22 +03:00
<script src="https://code.jquery.com/jquery-3.3.1.min.js" crossorigin></script>
{{-- @vite(['resources/js/img.js']) --}}
2024-08-25 23:48:32 +03:00
{{-- @vite(['resources/js/jqfix.js']) --}}
2024-08-25 22:19:27 +03:00
@vite(['resources/js/app.js'])
2024-08-25 21:08:37 +03:00
@yield('footer')
2024-08-24 23:08:42 +03:00
<script>
</script>
</body>
</html>