40 lines
1.6 KiB
PHP
40 lines
1.6 KiB
PHP
@extends('layouts.app', ['title' => $article->title.' — BloomFeed'])
|
|
|
|
@section('content')
|
|
<div class="reader-shell">
|
|
@if (session('status'))
|
|
<div class="form-status">{{ session('status') }}</div>
|
|
@endif
|
|
|
|
<a href="{{ url()->previous(route('dashboard')) }}" class="back-link">← {{ __('app.back_to_articles') }}</a>
|
|
|
|
<article class="card reader-article">
|
|
<h1 class="reader-title">{{ $article->title }}</h1>
|
|
<div class="reader-meta">
|
|
<span>{{ $article->feed->displayTitle() }}</span>
|
|
@if ($article->published_at)
|
|
<span>· {{ $article->published_at->diffForHumans() }}</span>
|
|
@endif
|
|
<a href="{{ $article->link }}" target="_blank" rel="noopener" class="reader-source-link">{{ __('app.view_original') }} ↗</a>
|
|
</div>
|
|
|
|
@if ($article->full_content_error)
|
|
<div class="reader-error">
|
|
<p>{{ __('app.fetch_error', ['error' => $article->full_content_error]) }}</p>
|
|
<form method="POST" action="{{ route('articles.retry', $article) }}">
|
|
@csrf
|
|
<button type="submit" class="btn btn-ghost btn-sm">{{ __('app.retry') }}</button>
|
|
</form>
|
|
@if ($article->excerpt)
|
|
<p class="mt-2">{{ $article->excerpt }}</p>
|
|
@endif
|
|
</div>
|
|
@elseif ($contentHtml)
|
|
<div class="prose">{!! $contentHtml !!}</div>
|
|
@else
|
|
<p class="text-muted">{{ __('app.fetching') }}</p>
|
|
@endif
|
|
</article>
|
|
</div>
|
|
@endsection
|