@extends('frontend.layouts.main', array('body_class' => (!$object->image ? 'no-header' : ''))) @section('content')

{{ $object->title }}

{!! $object->content !!}
@if(!$items->isEmpty()) @foreach($items as $item)
@if($item->type == 'news')

@lang('frontend.news')

@else

@lang('frontend.in_the_media')

@endif

{{$item->title}}

@lang('frontend.by') {{$item->author}} @lang('frontend.at') {{ format_date($item->date, true) }}
@if(!$item->document->isEmpty()) @endif
@if($item->media)
{!! getMediaImg($item->media, '280x150', htmlspecialchars($item->title)) !!}
{!! $item->summary !!} @if($item->content) @endif
@else
{!! $item->summary !!} @if($item->content) @endif
@endif
@endforeach @endif
@lang('frontend.no_news')
@stop