File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/pages/terms.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="column">
{{ $entity->description }}
<a href="/uploads/docs/{{ $filename }}.pdf" target="_blank" class="btn">{{ Lang::get('pages/terms.download_as_pdf') }}</a>
</div>
<div class="column last">
{{ $entity->description_two }}
</div>
@if( ! empty($images))
@foreach($images as $image)
<figure>
<img src="{{ $image->large_image_url }}" alt="{{ $entity->name }}" />
</figure>
@endforeach
@endif
</article>
</div>
@stop