File: D:/HostingSpaces/SBogers95/rentman.io/resources/views/site/base.blade.php
<!doctype html>
<html lang="{{ \App::getLocale() }}">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0">
@if(\App::environment() == 'production' && (isset($agent) && !$agent->isRobot() && !$isLighthouse))
@include('site.components.tracking.tagManagerHeader')
@endif
<title>@yield('title','Rentman')</title>
<meta name="description" content="@yield('meta_description', '')">
<meta name="csrf-token" content="{{ csrf_token() }}">
@if(isset($languageMenu) && !empty($languageMenu->withoutFallback))
@foreach($languageMenu->withoutFallback as $iso => $metaOtherLanguage)
@continue(!in_array($iso, config('app.available_languages')))
<link rel="alternate" hreflang="{{ $iso }}"
href="{{ \URL::to($metaOtherLanguage) }}"/>
@endforeach
@endif
<link rel="preload" href="{{ mix('css/style.css') }}" as="style" />
<link rel="preload" href="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.min.js" as="script" />
{{-- To prevent duplicate pages because of filter or trailing slash we add a canonical link --}}
<link rel="canonical" href="{{ Request::url() }}" />
<link href="{{ mix('css/style.css') }}" rel="stylesheet"/>
@include('site.components.favicons')
<script rel="stylesheet" src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.min.js"></script>
@if(\App::environment() == 'production')
{{-- Tracking codes --}}
{{--@include('site.tracking.hotjar')--}}
{{--@include('site.tracking.leads')--}}
@else
<meta name="robots" content="noindex"/>
@endif
@yield('meta_information')
@section('rich_snippets')
@if(config('site.rich_snippets') !== null)
<script type="application/ld+json">
{!! config('site.rich_snippets') !!}
</script>
@endif
@show
</head>
<body @if(isset($page) && isset($page->code_name))id="{{$page->code_name}}" @endif
class="{{ $view or '' }} @if(isset($alterHeadings) && $alterHeadings) s-headings @endif @if(!empty($headerIsLight) && $headerIsLight) is-header-light @endif @if(!empty($headerIsPartial) && $headerIsPartial) is-header-partial @endif">
@if(\App::environment() == 'production' && (isset($agent) && !$agent->isRobot() && !$isLighthouse))
@include('site.components.tracking.tagManagerBody')
@else
@if(\Config::get('site.showGrid'))
{{-- Grid overlay --}}
@include('site.components.gridOverlay')
{{-- Break point helper --}}
<div class="breakpoint"></div>
@endif
@endif
@yield('base-content')
<!-- Start cookieyes banner -->
<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/72d586dbb8ab13c87ba53be5/script.js"></script>
<!-- End cookieyes banner -->
{{--@include('site.components.cookie.cookies')--}}
<script defer type="text/javascript" src="{{ mix('js/site/core.js') }}"></script>
<script defer type="text/javascript" src="{{ mix('js/site/app.js') }}"></script>
</body>
</html>