File size: 849B
<div class="section mb-3 shadow">
<ol class="breadcrumb mb-1">
<li class="breadcrumb-item">
<i class="fa-solid fa-newspaper"></i> <a href="{{ route('news.index') }}" class="text-muted"> {{ __('index.news') }}</a>
</li>
</ol>
<div class="section-header d-flex align-items-start">
<div class="flex-grow-1">
<div class="section-title d-flex align-items-baseline">
<h3><a class="post-title" href="{{ route('news.view', ['id' => $post->id]) }}">{{ $post->title }}</a></h3>
</div>
</div>
</div>
<div class="section-content">
<div class="section-message">
{{ bbCodeTruncate($post->text, 100) }}
</div>
<small class="section-date text-muted fst-italic">{{ dateFixed($post->created_at) }}</small>
</div>
</div>