File: D:/HostingSpaces/SBogers96/smilefotografie.nl/app/views/layouts/master.blade.php
<!doctype html>
<html lang="en" class="{{ $negative or '' }}">
<head>
<meta charset="UTF-8">
{{-- Robots noindex except for production --}}
@if(\App::environment() != 'production')
<meta name="robots" content="noindex"/>
@endif
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta name="description" content="{{ $meta->description }}" />
<title>{{ $meta->title }}</title>
{{-- CSS --}}
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,300italic,700' rel='stylesheet' type='text/css'>
<link href="/css/style.css" rel="stylesheet" type="text/css" />
{{-- Favicon --}}
@include('layouts.partials.favicon')
{{-- Google analytics only for production --}}
@if(\App::environment() == 'production')
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-P8PSTQP');</script>
<!-- End Google Tag Manager -->
@endif
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body class="{{ $bodyClass or '' }}">
@if(\App::environment() == 'production')
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P8PSTQP"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
@endif
@include('layouts.partials.mobileNavigation')
<div class="full-grid-container">
<header class="main">
<div class="top-row">
{{-- Logo --}}
<div class="logo-holder">
{{-- todo: replace span with logo--}}
<a href="/"> </a>
</div>
{{-- Navigation --}}
@include('layouts.partials.navigation')
</div>
{{-- Custom header content --}}
@yield('header')
</header>
@yield('content')
@include('layouts.partials.footer')
</div>
@include('layouts.partials.cookieMessage')
<!-- Javascript Section -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<script>
window.jQuery || document.write('<script src="/js/lib/jquery.js">\x3C/script>');
window.Modernizr || document.write('<script src="/js/lib/modernizr.js">\x3C/script>');
</script>
<script data-main="/js/app/main" src="/js/lib/core/require.js"></script>
</body>
</html>