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/honger.komma.pro/resources/views/site/pages/about.blade.php
@extends('site.master')

@section('content')

    {{-- Intro header --}}
    @include('site.partials.header',['key' => 'about'])

    {{-- The team section --}}
    <section id="arrow-target" class="contained-layout">

        {{-- Center content on a 12-based grid --}}
        <div class="col-12 centered">

            {{--@include('site.partials.breadcrumb')--}}

            {{-- Use a grid based layout to be flexable in two directions --}}
            <div class="grid-layout about-our-team">

                {{-- Grid item with intro text --}}
                <div class="text">

                    <div class="text-block">

                        <h2>{!!__('site/about.team.title')!!}</h2>

                        {{-- These divs contain some inline paragraphs, so it can both be one of two column text--}}
                        {!!__('site/about.team.description')!!}

                        {{-- Request an offer --}}
                        <a href="{!!__('site/partials/buttons.taste.href')!!}" class="button stroked blue arrow">
                            {!!__('site/partials/buttons.taste.label')!!}
                        </a>

                    </div>

                </div>

                {{-- The team --}}
                @foreach($team as $member)
                    @include('site.partials.teamPortrait',['member' => $member])
                @endforeach

                {{-- Job offer tile --}}
                <a href="/vacatures" class="job-offer team-portrait">
                    <div class="portrait">

                        <div class="content">
                            <span class="title">Join<br />our<br />team</span>
                            <p>We zijn altijd op zoek naar talent, ook als er geen vacatures openstaan.</p>
                        </div>
                    </div>
                    <div class="caption">
                        <span class="button stroked white arrow">Jobs</span>
                    </div>
                </a>

            </div>
        </div>
    </section>

    {{-- Facebook call to action block--}}
    @include('site.partials.callToActionBlock',[
        'streamer' => Lang::get('site/partials/callToActions.facebook.streamer'),
        'callToAction' => Lang::get('site/partials/callToActions.facebook.callToAction'),
        'comment' => Lang::get('site/partials/callToActions.facebook.comment'),
        'buttonLabel' => Lang::get('site/partials/callToActions.facebook.button'),
        'buttonHref' => Lang::get('site/partials/callToActions.facebook.href'),
        'buttonIcon' => 'like',
        'target' => '_blank'
    ])

    {{-- Images --}}
    <div class="contained-layout">
        <div class="image-grid with-gaps">
            <img class="preload stretch" src="/img/komma/static/hq.jpg" alt="office"/>
            <img class="preload stretch" src="/img/komma/static/vrimibo.jpg" alt="Vrijdag middag borrel bij Komma" />
            @include('site.partials.eastereggs.easteregg_1')
        </div>
    </div>

    {{-- Why Komma / Services --}}
    <div class="why-us contained-layout">

        {{-- Why komma --}}
        <section class="text-block col-6 offset-1 col-sm-12 offset-sm-0">

            <h2>{!!__('site/about.why.title')!!}</h2>

            {!!__('site/about.why.description')!!}

            <a href="{!!__('site/partials/buttons.offer.href')!!}" class="button stroked blue arrow">
                {!!__('site/partials/buttons.offer.label')!!}
            </a>

        </section>

        {{-- Services--}}
        <section class="text-block col-5 col-sm-12 offset-sm-0">
            @include('site.partials.servicesList')
        </section>
    </div>

    {{-- Featured cases --}}
    @include('site.partials.cases.featured',[
        'featured' => ['bullWave','rentman']
    ])

    {{-- Call to action bar --}}
    @include('site.partials.callToActionBar',[
        'key' => 'vincent',
        'streamer' => 'Loopt het water je al in de mond?'
    ])


@endsection

{{-- Footer --}}
@section('footer_button')
    @include('site.partials.footerButton',[
            'label' => "Aanpak",
            'href' => "/aanpak"
        ])
@endsection