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/topswtwmobile.komma.pro/app/views/pages/default.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>
            @if( ! empty($images))
                @foreach($images as $image)
                    <figure>
                       <img src="{{ $image->large_image_url }}" alt="{{ $entity->name }}" />
                    </figure>
                @endforeach
            @endif

        </article>
    </div>

    @stop