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/stafa/stafa.nl/resources/views/site/organisms/header.blade.php
<header class="o-header  @if(!empty($isSticky)) is-sticky js-sticky-header @endif" @if(!empty($isSticky)) hidden @endif>
    <div class="o-header__main  js-header-main">

        <nav class="o-header__prenav">
            @include('site.components.secondaryNavigation')
        </nav>

        <a class="o-header__logo" href="{{ $links->home->route ?? '/' }}" @if(!empty($isSticky)) tabindex="-1" @endif aria-label="{{ config('site.company.name') }} homepage">
            <img src="/img/stafa-logo-on-dark.svg" alt="" class="o-header__img"/>
        </a>

        @if(isset($links))
            <div class="o-header__nav">
                @include('site.components.navigation', ['navPreventTab' => !empty($isSticky) ? true : false])
            </div>
        @endif

        <div class="o-header__toggle  js-nav-trigger">
            @include('site.components.hamburger', [
                'hamburgerClasses' => !empty($isSticky) ? 'js-overlay-menu-trigger  is-light' : 'js-overlay-menu-trigger',
                'hamburgerAria' => 'overlay-menu',
                'hamburgerPreventTab' => !empty($isSticky) ? true : false
            ])
        </div>
    </div>
</header>