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/vacancies/index.blade.php
@extends('site.master')

@section('content')

    {{-- Intro header --}}
    <header class="main">

        {{-- Content --}}
        <div class="contained-layout">

            <div class="intro col-8 centered">

                <h1>{{ $page->translation->meta_title }}</h1>
                {{ nl2br($page->translation->meta_description) }}

                @include('site.partials.jobList')

            </div>
        </div>

        @include('site.partials.headerDrips')
    </header>

    {{-- Summary --}}
    <section id="arrow-target" class="summary contained-layout">

        @if(isset($page->blocks))

            @foreach($page->blocks as $block)

                @if(View::exists($block->view))
                    @include($block->view,[
                        'block' => $block
                    ])
                @endif

            @endforeach

        @endif

    </section>

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

@endsection

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