@extends('layouts.public') @section('title', $item->seoTitle()) @section('meta_description', $item->seoDescription()) @section('meta_image', $item->seoImage()) @section('meta_keywords', $item->seoKeywords()) @section('og_type', 'article') @push('structured-data') @endpush @section('content')
@if ($item->published_at) @endif @if ($item->author) {{ $item->author }} @endif @if ($item->sector) {{ $item->sector->name }} @endif
@if ($item->thumbnail) @endif @if ($item->short_description)

{{ $item->short_description }}

@endif @if ($item->content)
{!! $item->content !!}
@endif @if ($item->images->isNotEmpty())

{{ __('Gallery') }}

@foreach ($item->images as $index => $image) @endforeach
@include('public.partials.lightbox')
@endif
@if ($item->attachment) {{ __('Download attachment') }} @endif @if ($item->external_link) {{ __('External link') }} @endif
@if (filled($item->tags))
    @foreach ($item->tags as $tag)
  • #{{ $tag }}
  • @endforeach
@endif
@endsection