51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
@include('googletagmanager::head')
|
|
<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">
|
|
{!! SEOMeta::generate() !!}
|
|
{!! OpenGraph::generate() !!}
|
|
{!! Twitter::generate() !!}
|
|
{!! JsonLdMulti::generate() !!}
|
|
<meta property="fb:app_id" content="{{ config('seotools.fb_app_id') }}" />
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('apple-touch-icon.png') }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('favicon-32x32.png') }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('favicon-16x16.png') }}">
|
|
<link rel="manifest" href="{{ asset('site.webmanifest')}}">
|
|
|
|
@vite('resources/sass/front-app.scss')
|
|
|
|
<!-- Custom styles for this Page-->
|
|
@yield('custom_styles')
|
|
|
|
@include('layouts.front.header')
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
@include('googletagmanager::body')
|
|
|
|
@include('layouts.front.navigation')
|
|
|
|
@yield('content')
|
|
|
|
@include('layouts.front.footer')
|
|
|
|
<!-- Core plugin JavaScript-->
|
|
@vite('resources/js/front-app.js')
|
|
|
|
<!-- Page level custom scripts -->
|
|
@yield('custom_scripts')
|
|
|
|
</body>
|
|
|
|
</html>
|