@extends('layouts.app', ['title' => $article->title.' — BloomFeed']) @section('content')
@if (session('status'))
{{ session('status') }}
@endif ← {{ __('app.back_to_articles') }}

{{ $article->title }}

{{ $article->feed->displayTitle() }} @if ($article->published_at) · {{ $article->published_at->diffForHumans() }} @endif {{ __('app.view_original') }} ↗
@if ($article->full_content_error)

{{ __('app.fetch_error', ['error' => $article->full_content_error]) }}

@csrf
@if ($article->excerpt)

{{ $article->excerpt }}

@endif
@elseif ($contentHtml)
{!! $contentHtml !!}
@else

{{ __('app.fetching') }}

@endif
@endsection