File: D:/HostingSpaces/SBogers10/kemi.komma.pro/resources/views/site/master.blade.php
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
@if(\App::environment() == 'production')
@include('site.tracking.tagManagerHeader')
@endif
<title>@yield('title','Komma')</title>
<meta name="description" content="@yield('meta_description', '')">
@if(isset($otherLanguages))
@foreach($otherLanguages->metaTranslationRoutes as $metaOtherLanguage)
<link rel="alternate" hreflang="{{$metaOtherLanguage->iso}}"
href="{{ \URL::to($metaOtherLanguage->route) }}"/>
@endforeach
@endif
<link href="{{ mix('css/style.css') }}" type="text/css" rel="stylesheet"/>
@include('site.partials.favicons')
@if(\App::environment() == 'production')
{{-- Tracking codes --}}
{{--@include('site.tracking.hotjar')--}}
{{--@include('site.tracking.leads')--}}
@else
<meta name="robots" content="noindex"/>
@endif
</head>
<body class="{{!empty($page) ? $page->code_name : ''}}{{!empty($project) ? ' sub' : ''}} {{$view or ''}}">
@if(\App::environment() == 'production')
@include('site.tracking.tagManagerBody')
@else
@if(\Config::get('site.showGrid'))
{{-- Grid overlay --}}
@include('site.development.gridOverlay')
{{-- Break point helper --}}
<div class="breakpoint"></div>
@endif
@endif
@include('site.partials.header.header')
@yield('content')
@if(app()->getLocale() == 'nl')
@include('site.partials.cookieMessage')
@endif
@include('site.partials.footer')
<script type="text/javascript" src="/js/site/core.js"></script>
<script type="text/javascript" src="{{ mix('js/site/app.js') }}"></script>
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Roboto:400,500,700,900']
}
});
</script>
@yield('extra-js')
</body>
</html>