File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/pages/people.blade.php
@extends('layouts.master')
@section('background')
<div class="bg-50"></div>
@stop
@section('sidebar')
@include('partials.sidebar')
@stop
@section('brandNavigationBar')
@include('partials.brandNavigationBar')
@stop
@section('content')
<div class="content-container column fluid-100">
<!-- Breadcrumb -->
@include('partials.breadcrumb')
<!-- Title -->
<h1 class="page-title">{{ $entity->name }}</h1>
<article class="text-block content-block column fluid-100">
<h2>{{ $entity->name }}</h2>
<div class="description column">
{{ $entity->description }}
</div>
<div class="description column last">
{{ $entity->description_two }}
@if( ! empty($entity->call_to_action))
@include('partials.callToActions.' . $entity->call_to_action)
@endif
</div>
<div class="clear"></div>
<h2>{{ Lang::get('pages/people.team') }}</h2>
<div class="people-holder">
@foreach( Lang::get('pages/people.people') as $person)
<div class="image-holder">
<img src="/images/static/people/{{ strtolower($person['name']) }}_people.jpg" alt="{{ $person['name'] }} | {{ Lang::get('tops.name') }}" /><br />
<span class="name">{{ $person['name'] }}</span>
{{-- <span class="function">{{ $person['function'] or '' }}</span> --}}
</div>
@endforeach
</div>
@if( ! empty($images))
@foreach($images as $image)
<figure class="page-image">
<img src="{{ $image->large_image_url }}" alt="{{ $entity->name }}" />
</figure>
@endforeach
@endif
</article>
</div>
@stop