From e89b1902e3b5dc1acc47b22ae738d43a6652b244 Mon Sep 17 00:00:00 2001 From: dev Date: Sat, 27 Jun 2026 16:59:49 +0200 Subject: license --- resources/views/cinema_show.blade.php | 38 +++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/resources/views/cinema_show.blade.php b/resources/views/cinema_show.blade.php index 6494cdd..63ec736 100644 --- a/resources/views/cinema_show.blade.php +++ b/resources/views/cinema_show.blade.php @@ -23,6 +23,9 @@ column-gap: 20px; } +.hn-story { + color: var(--cinema-pink); +} .hn-comment { font-size: 0.875rem; color: var(--cinema-pink); @@ -155,14 +158,6 @@ @endif - @if ( ! empty($movie->license_url) ) -
- - Licensed under {{ $movie->license_short ?? $movie->license }} - -
- @endif - @if ( ! empty($hnStories) )

Mentions on Hacker News

@@ -171,25 +166,42 @@
  • @if ($story->type === 'comment' && ! empty($story->text)) - {{ Str::limit(strip_tags($story->text), 80) }} + + {!! file_get_contents(public_path() . "/img/y-combinator.svg") !!} + {{ Str::limit(strip_tags($story->text), 80) }} + @else - {{ $story->title ?: 'HN Story' }} + + {!! file_get_contents(public_path() . "/img/y-combinator.svg") !!} + {{ $story->title ?: 'HN Story' }} + @endif - +
  • @endforeach
    @endif + +
    + @if ( ! empty($movie->license_url) ) + + Ratings provided by IMDB. Information courtesy of IMDb. Used with permission. + + + Wikidata Licensed under {{ $movie->license_short ?? $movie->license }} + + @endif +
    -- cgit v1.2.3