diff options
| -rw-r--r-- | resources/views/cinema_show.blade.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/resources/views/cinema_show.blade.php b/resources/views/cinema_show.blade.php index 92e684d..6494cdd 100644 --- a/resources/views/cinema_show.blade.php +++ b/resources/views/cinema_show.blade.php @@ -155,6 +155,14 @@ </div> @endif + @if ( ! empty($movie->license_url) ) + <div class="mt-3"> + <small class="text-muted"> + Licensed under <a href="{{ $movie->license_url }}" target="_blank" class="card-links">{{ $movie->license_short ?? $movie->license }}</a> + </small> + </div> + @endif + @if ( ! empty($hnStories) ) <div class="mt-3"> <h4 class="hn-heading">Mentions on Hacker News</h4> |
