HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/netwerkbrabant/netwerkbrabant.nl/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">

    <title>@yield('title','Netwerk Brabant')</title>
    <meta name="description" content="@yield('meta_description', '')">

    @if(\App::environment() == 'production')

        @include('site.tracking.tagManagerHeader')

        {{-- Tracking codes --}}
        {{--@include('site.tracking.hotjar')--}}
        {{--@include('site.tracking.leads')--}}

    @else
        <meta name="robots" content="noindex"/>
    @endif

    @if(isset($otherLanguages))
        @foreach($otherLanguages as $metaOtherLanguage)
            <link rel="alternate" hreflang="{{$metaOtherLanguage->iso}}"
                  href="{{ \URL::to($metaOtherLanguage->route) }}"/>
        @endforeach
    @endif

    @if(request()->get('original_path') !== null)
        <link rel="canonical" href="{{ request()->get('original_path') }}" />
    @endif

    <link href="{{ mix('css/style.css') }}" type="text/css" rel="stylesheet"/>

    @include('site.elements.favicons')

    @yield('meta_information')

</head>
<body @if(isset($pageId)) id="{{$pageId}}"  @elseif(isset($page) && isset($page->code_name))id="{{$page->code_name}}" @endif class="{{ $view or '' }}">

@if(\App::environment() == 'production')

    @include('site.tracking.tagManagerBody')

@else

    <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>

    @if(\Config::get('site.showGrid'))
        {{-- Grid overlay --}}
        @include('site.development.gridOverlay')
        {{-- Break point helper --}}
        <div class="breakpoint"></div>
    @endif

@endif

@yield('base-content')

@include('site.partials.cookie.cookieMessage')

<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
    WebFont.load({
        google: {
            families: ['Abril Fatface|Poppins:400,400i,500,600,700,700i']
        }
    });
</script>
<script type="text/javascript" src="{{ mix('js/site/app.js') }}"></script>

@yield('bodiesEnd')

</body>
</html>