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/SBogers10/farmfun.komma.pro/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','Komma')</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">

    {{-- To prevent duplicate pages because of filter or trailing slash we add a canonical link --}}
    <link rel="canonical" href="{{ request()->get('original_path') }}" />
    <link rel="alternate" href="{{ str_replace('.be', '.nl', request()->get('original_path')) }}" hreflang="nl-nl"/>
    <link rel="alternate" href="{{ str_replace('.nl', '.be', request()->get('original_path')) }}" hreflang="nl-be"/>
    <link href="{{ mix('css/style.css') }}" rel="stylesheet"/>
    @if(!app()->environment('local'))
        <script
                src="https://browser.sentry-cdn.com/6.19.6/bundle.min.js"
                integrity="sha384-XITe7oDiyULCpVPtGc52+ISVyD2MAEbbfpNsmYcfxClZXDw+IA906MSf6rhcdf3L"
                crossorigin="anonymous"
        ></script>
        <script>
            Sentry.init({
                dsn: 'https://502f7f8f80ca45aa9ad280cf2e5aed76@o553291.ingest.sentry.io/5693086',
                tracesSampleRate: 0.3,
                beforeSend: (event, hint) => {
                    // debugger;
                    if (hint) {
                        // Filter out some errors we don't care about
                        const error = hint.originalException
                        let errorMessage
                        if (typeof error === 'string') {
                            errorMessage = error
                        } else if (error instanceof Error) {
                            errorMessage = error.message
                        }

                        //Check error message and return null if you want to discard them
                        if(errorMessage.includes('undefined is not an object (evaluating \'document.getElementsByTagName(\'video\')[0]')) { //Watermelon bug
                            return null
                        }

                        //Discard shitty google analytics / tag manager errors.
                        if(hint.originalException && hint.originalException.stack && hint.originalException.stack.includes('gtag/js')) {
                            return null;
                        }

                        console.log('error message: ', errorMessage)
                    }
                },
            });
        </script>

        <script>var continuallySettings = { appID: "wxky43z5qrpg" };</script>
        <script src="https://cdn-app.continual.ly/js/embed/continually-embed.latest.min.js"></script>
    @endif

    @include('site.components.favicons')

    @if(\App::environment() !== 'production')
        <meta name="robots" content="noindex"/>
    @endif

    @yield('meta_information')

    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;600;700&family=Open+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">

</head>
<body @if(isset($page) && isset($page->code_name))id="{{$page->code_name}}" @endif class="{{ !empty($view) ? $view : 'l-body' }}">

@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


@include('site.components.clipPaths')
@yield('base-content')

@include('site.components.breadcrumbJson')

<script type="text/javascript">
    (function(e,t,o,n,p,r,i){e.visitorGlobalObjectAlias=n;e[e.visitorGlobalObjectAlias]=e[e.visitorGlobalObjectAlias]||function(){(e[e.visitorGlobalObjectAlias].q=e[e.visitorGlobalObjectAlias].q||[]).push(arguments)};e[e.visitorGlobalObjectAlias].l=(new Date).getTime();r=t.createElement("script");r.src=o;r.async=true;i=t.getElementsByTagName("script")[0];i.parentNode.insertBefore(r,i)})(window,document,'https://diffuser-cdn.app-us1.com/diffuser/diffuser.js',"vgo");
    vgo('setAccount', '68831642');
    vgo('setTrackByDefault', true);

    vgo('process');
</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/site/app.js') }}"></script>
@if(config('app.isShop'))
    <script type="text/javascript" src="{{ mix('js/shop/shop.js') }}"></script>
@endif
</body>
</html>