File: D:/HostingSpaces/blijegasten/blijegasten.be/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')
@include('site.components.tracking.tagManagerHeader')
@endif
<title>@yield('title','Blije Gasten')</title>
<meta name="description" content="@yield('meta_description', '')">
<meta name="csrf-token" content="{{ csrf_token() }}">
{{-- This will prevent devices from automatically generating phone links --}}
<meta name="format-detection" content="telephone=no">
{{-- By doing this, Google knows that these pages are translations of the current one --}}
@if(isset($otherLanguages))
@foreach($otherLanguages as $metaOtherLanguage)
<link rel="alternate" hreflang="{{$metaOtherLanguage->iso}}"
href="{{ \URL::to($metaOtherLanguage->route) }}"/>
@endforeach
@endif
{{-- To prevent duplicate pages because of filter or trailing slash we add a canonical link --}}
<link rel="canonical" href="{{ request()->root() . $_SERVER['REQUEST_URI'] }}" />
<link href="{{ mix('css/style.css') }}" rel="stylesheet"/>
@include('site.components.favicons')
@if(\App::environment() == 'production')
<script src="https://browser.sentry-cdn.com/5.13.0/bundle.min.js" integrity="sha384-ePH2Cp6F+/PJbfhDWeQuXujAbpil3zowccx6grtsxOals4qYqJzCjeIa7W2UqunJ" crossorigin="anonymous"></script>
<script>Sentry.init({ dsn: 'https://57082635b6524b98854895d407bd358e@sentry.komma.pro/3' });</script>
{{-- Tracking codes --}}
{{--@include('site.tracking.hotjar')--}}
{{--@include('site.tracking.leads')--}}
@else
<meta name="robots" content="noindex"/>
@endif
@yield('meta_information')
</head>
<body @if(isset($page) && isset($page->code_name))id="{{$page->code_name}}" @endif class="{{ !empty($view) ?: '' }}">
@if(\App::environment() == 'production')
@include('site.components.tracking.tagManagerBody')
@else
@if(config('site.show_grid'))
{{-- Grid overlay --}}
<div class="u-visible-grid l-grid">
<div class="u-visible-grid__main"></div>
</div>
@endif
@endif
@yield('base-content')
@if(!isset($hideCookieMessage) || !$hideCookieMessage)
@include('site.components.cookie.cookies')
@endif
@include('site.components.modal')
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Roboto Slab:700', 'Source Sans Pro: 400,400i,600,700,700i,900']
}
});
</script>
@include('site.components.richSnippets')
<script defer type="text/javascript" src="{{ mix('js/site/manifest.js') }}"></script>
<script defer type="text/javascript" src="{{ mix('js/site/vendor.js') }}"></script>
<script defer type="text/javascript" src="{{ mix('js/site/app.js') }}"></script>
</body>
</html>