File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/mobile/pages/people.blade.php
@extends('mobile.master')
@section('content')
<div class="about-page mobile-page">
@if( ! empty($entity->call_to_action))
@include('partials.callToActions.' . $entity->call_to_action)
@endif
<article class="text-block white {{$entity->code_name}}">
<h1>{{ $entity->name }}</h1>
{{ $entity->description }}
@if(isset($entity->description_two) && $entity->description_two != '')
{{ $entity->description_two }}
@endif
</article>
<div class="our-team">
<h2>@lang('pages/people.team')</h2>
<div class="people-holder">
@foreach( Lang::get('pages/people.people') as $person)
<div class="person">
<div class="image-holder" style="background-image: url('/images/static/people/{{ strtolower($person['name']) }}_people.jpg');">
</div>
<span class="name">{{ $person['name'] }}</span>
{{-- <span class="function">{{ $person['function'] or '' }}</span> --}}
</div>
@endforeach
</div>
</div>
</div>
@stop