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/komma.pro/resources/views/site/cases/rentman.blade.php
@extends('site.pages.case')

@section('caseHeader')

    @include('site.partials.cases.caseHeader',[
        'title' => 'Rentman',
        'tags' => Lang::get('site/cases/' . $codeName . '.tags'),
        'image' => '/img/komma/cases/rentman/rentman_header.jpg',
    ])

    @endsection

@section('caseProgress')

    {{-- Aside progress in reverserd order --}}
    @include('site.partials.cases.dynamic.progress',[
        'items' => [
            ['key'=>'exhibition','label'=>'Beurs'],
            ['key'=>'website','label'=>'Website'],
        ]
    ])
    @endsection

@section('caseDynamic')

        {{-- Website section --}}
        <section class="contained-layout" id="website">

            @include('site.partials.cases.dynamic.singleText',[
                'title' => Lang::get('site/cases/' . $codeName . '.website.title'),
                'description' => Lang::get('site/cases/' . $codeName . '.website.description')
            ])

            <img class="stretch preload" src="/img/komma/cases/rentman/rentman_web.jpg" alt="Rentman" />

            <div class="image-grid">
                <img class="stretch preload" src="/img/komma/cases/rentman/rentman_photo.jpg" alt="Rentman" />
                <img class="stretch preload" src="/img/komma/cases/rentman/rentman_mobile.jpg" alt="Rentman" />
            </div>

        </section>

        {{-- Exhibition section --}}
        <section class="contained-layout" id="exhibition">

            @include('site.partials.cases.dynamic.singleText',[
                'title' => Lang::get('site/cases/' . $codeName . '.exhibition.title'),
                'description' => Lang::get('site/cases/' . $codeName . '.exhibition.description')
            ])

            <div class="col-10 centered">
                <img class="stretch preload" src="/img/komma/cases/rentman/rentman_beurs.jpg" alt="Rentman" />
            </div>

            <div class="spacer"></div>
        </section>

    @endsection

@section('caseTestimonial')
    @include('site.partials.cases.caseTestimonial',[
        'image' => 'rentman_roy.png',
        'codeName' => $codeName
    ])
@endsection

{{-- Full width image beneath the dynamic section --}}
@section('closing')

    @endsection