From 3b8f8c9adc18059d4d33609895f4d187de065bcf Mon Sep 17 00:00:00 2001 From: Developer Date: Sat, 27 Jun 2026 04:26:33 +0200 Subject: style: move HN story date/meta to separate muted line below link --- resources/views/cinema_show.blade.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/resources/views/cinema_show.blade.php b/resources/views/cinema_show.blade.php index f9e613f..4562a9c 100644 --- a/resources/views/cinema_show.blade.php +++ b/resources/views/cinema_show.blade.php @@ -146,18 +146,20 @@
  • @if ($story->type === 'comment' && ! empty($story->text)) - Comment: {{ Str::limit(strip_tags($story->text), 80) }} + {{ Str::limit(strip_tags($story->text), 80) }} @else {{ $story->title ?: 'HN Story' }} @endif - | {{ \Carbon\Carbon::createFromTimestamp($story->time)->format('Y-m-d') }} - @if ($story->score > 0) - | {{ $story->score }} Upvotes - @endif - @if ($story->descendants > 0) - | {{ $story->descendants }} Comments - @endif + + {{ \Carbon\Carbon::createFromTimestamp($story->time)->format('Y-m-d') }} + @if ($story->score > 0) + · {{ $story->score }} Upvotes + @endif + @if ($story->descendants > 0) + · {{ $story->descendants }} Comments + @endif +
  • @endforeach -- cgit v1.2.3