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: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">
|
2024-08-28 03:05:53 +03:00
|
|
|
@if(request()->routeIs('fallback'))
|
|
|
|
<meta property="og:url" content="{{ route('home') }}">
|
|
|
|
<link rel="canonical" href="{{ route('home') }}">
|
|
|
|
@else
|
|
|
|
<meta property="og:url" content="{{ url()->current() }}">
|
|
|
|
<link rel="canonical" href="{{ url()->current() }}">
|
|
|
|
|
|
|
|
@endif
|
2024-08-24 23:08:42 +03:00
|
|
|
<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-09-10 03:05:54 +03:00
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link rel="preconnect" href="https://code.jquery.com" crossorigin>
|
2024-08-26 04:25:22 +03:00
|
|
|
@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 -->
|
2024-09-10 01:33:11 +03:00
|
|
|
<div id="preloader">
|
2024-08-24 23:08:42 +03:00
|
|
|
<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>
|
2024-09-10 01:33:11 +03:00
|
|
|
</div>
|
2024-08-24 23:08:42 +03:00
|
|
|
<!-- 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-26 20:50:06 +03:00
|
|
|
<script type="module">
|
2024-08-25 22:19:27 +03:00
|
|
|
{!! Vite::content('resources/js/img.js')!!}
|
2024-08-26 20:50:06 +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-27 18:46:07 +03:00
|
|
|
@stack('footer')
|
2024-08-24 23:08:42 +03:00
|
|
|
|
2024-08-31 02:34:31 +03:00
|
|
|
@include('components.svgs.global')
|
2024-08-24 23:08:42 +03:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|