File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/views/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')
<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://8b2a9f0c5ede403a8d84f4d7e17b2679@sentry.komma.pro/7' });</script>
@include('components.tracking.tagManagerHeader')
{{-- Tracking codes --}}
{{--@include('site.tracking.hotjar')--}}
{{--@include('site.tracking.leads')--}}
@else
<meta name="robots" content="noindex"/>
@endif
<title>@yield('title','STE Languages')</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(!empty($languageMenu->withoutFallback))
@foreach($languageMenu->withoutFallback as $iso => $metaOtherLanguage)
<link rel="alternate" hreflang="{{ $iso }}"
href="{{ \URL::to($metaOtherLanguage) }}"/>
@endforeach
@endif
{{-- To prevent duplicate pages because of filter or trailing slash we add a canonical link --}}
<link rel="canonical" href="{{ request()->root() . (isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '') }}" />
<link href="{{ mix('/css/style.css') }}" rel="stylesheet"/>
@include('components.favicons')
@yield('meta_information')
</head>
<body @if(isset($page) && isset($page->code_name))id="{{$page->code_name}}" @endif class="u-preload-transitions {{ !empty($view) ?: '' }}">
<p style="margin: 0; position: fixed; z-index: 800; left: 0; top: 0; padding: 20px 10px; width: 100%; text-align: center; color: white; font-size: 14px; line-height: 1.2; font-weight: bold; background: red;">DIT IS EEN TEST OMGEVING</p>
<p style="margin: 0; height: 56px"> </p>
@if(\App::environment() == 'production')
@include('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('components.cookie.cookies')
@endif
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Raleway:400,500,600,800']
}
});
</script>
@include('components.richSnippets')
<script type="text/javascript">
document.addEventListener("DOMContentLoaded",function(){
let node = document.querySelector('.u-preload-transitions');
node.classList.remove('u-preload-transitions');
});
</script>
<script defer type="text/javascript" src="{{ mix('js/manifest.js') }}"></script>
<script defer type="text/javascript" src="{{ mix('js/vendor.js') }}"></script>
<script defer type="text/javascript" src="{{ mix('js/app.js') }}"></script>
</body>
</html>