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/jacques-hein/jacques-hein.nl/app/views/layouts/partials/mobileNavigation.blade.php
<div class="mobile-navigation">
    <div class="bar">
        <div class="toggle-menu">
            <div class="icon">
                <span></span>
                <span></span>
                <span></span>
            </div>
        </div>
        <div class="mobile-logo">
            <img alt="logo" src="/img/logo.svg"/>
        </div>
        {{--<div class="toggle-contact">--}}
        {{--<i class="material-icons md-light">perm_contact_calendar</i>--}}
        {{--</div>--}}
    </div>
    <div class="shader"></div>

    <div class="menu">
        <!-- MULTI LANGUAGE LANGUAGE SELECTION -->
        {{--<div class="language language-selector">--}}
        {{--<ul>--}}
        {{--@foreach($otherLanguages as $language)--}}
        {{--<li @if(\App::getLocale() == $language->iso_2) class="active" @endif >--}}
        {{--<a data-language="{{$language->iso_2}}"--}}
        {{--href="/@if($language->route->route!='/'){{$language->route->route}}@endif">--}}
        {{--{{$language->iso_2}}--}}
        {{--</a>--}}
        {{--</li>--}}
        {{--@endforeach--}}
        {{--</ul>--}}
        {{--</div>--}}

        <nav>
            <ul>
                @foreach($mainNav as $item)
                    <li @if($page->code_name == $item->code_name) class="active" @endif>
                        <a href="/{{$item->route}}">{{$item->name}}
                        </a>
                    </li>
                @endforeach
            </ul>
        </nav>

        <p class="social">
            <strong>@lang('translations.followUs')</strong>

            <span class="icons">
                @if( \Config::get('business.facebook') != '') <a class="facebook" target="_blank" href="{{Config::get('business.facebook')}}"><span></span></a> @endif
                @if( \Config::get('business.linkedin') != '') <a class="linkedin" target="_blank" href="{{Config::get('business.linkedin')}}"><span></span></a> @endif
                @if( \Config::get('business.instagram') != '') <a class="instagram" target="_blank" href="{{Config::get('business.instagram')}}"><span></span></a> @endif
                @if( \Config::get('business.youtube') != '') <a class="youtube" target="_blank" href="{{Config::get('business.youtube')}}"><span></span></a> @endif
                @if( \Config::get('business.twitter') != '') <a class="twitter" target="_blank" href="{{Config::get('business.twitter')}}"><span></span></a> @endif

                {{--<a href="{{\Config::get('business.facebook')}}"><span class="facebook"></span></a>--}}
                {{--<a href="{{\Config::get('business.linkedin')}}"><span class="linkedin"></span></a>--}}
            </span>
        </p>
    </div>

    <div class="shader-contact"></div>
    <div class="contact">
        <div class="contact-container">
            <div>
                <h3>Contact</h3>
                <p>{{Config::get('business.business-name')}}</p>
                <p>{{Config::get('business.adres')}}</p>
                <p>{{Config::get('business.zip')}} {{Config::get('business.city')}}</p>
                <p>{{Config::get('business.country')}}</p>
            </div>

            <div>
                <a href="tel:{{Config::get('business.phone.call')}}">{{Config::get('business.phone.display')}}</a><br/>
                <a href="mailto:{{Config::get('business.email')}}">{{Config::get('business.email')}}</a>
            </div>
        </div>
    </div>
</div>