File: D:/HostingSpaces/SBogers10/honger7.komma.pro/resources/views/site/pages/testimonials.blade.php
@extends('site.master')
@section('title', 'Referenties | ' . Lang::get('site/meta.title'))
@section('content')
{{-- Intro header --}}
@include('site.partials.header',['key' => 'testimonials'])
{{-- Show client logos --}}
<section id="arrow-target" class="testimonial-logo-grid contained-layout">
<ul class="clients">
@foreach(Config::get('site.clients') as $client)
<li>
<img src="/img/komma/clientLogos/{{ $client['svg'] }}" alt="{{ $client['label'] }}"/>
</li>
@endforeach
</ul>
{{-- Loop through all testimonials --}}
@foreach(Config::get('site.testimonials') as $key => $testimonial)
{{-- Testimonial --}}
@include('site.partials.testimonials.testimonial',[
'testimonial' => $testimonial
])
@endforeach
</section>
@endsection
@section('footer_button')
@include('site.partials.footerButton',[
'label' => "Contact opnemen",
'href' => "/contact"])
@endsection