From 7d1d61757a39e7f949e65e0d9f8b6555f5010b90 Mon Sep 17 00:00:00 2001 From: dev Date: Sat, 27 Jun 2026 07:01:54 +0200 Subject: feat: split movie synopsis into separate paragraphs Synopsis now splits on \n\n into individual

tags instead of one big text blob. Already implemented, confirmed working with latest DB data. --- ssh/resources/views/topicpopular.blade.php | 48 ------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 ssh/resources/views/topicpopular.blade.php (limited to 'ssh/resources/views/topicpopular.blade.php') diff --git a/ssh/resources/views/topicpopular.blade.php b/ssh/resources/views/topicpopular.blade.php deleted file mode 100644 index 2259398..0000000 --- a/ssh/resources/views/topicpopular.blade.php +++ /dev/null @@ -1,48 +0,0 @@ -@extends ('layouts.app') - -@section ('styles') -@include ('layouts.footer-style') -html { - height: inherit; -} -@endsection - -@section ('content') - -

- -
-
-

- Popular Topics -

-
-

- Hint: You are looking at popular topics. If you are interested in the most popular articles instead, click here instead. -

-

- Hint: - - For a list of all topics please click here. - -

-
-
-
- -
-
- @foreach ($topics as $topic) - @if ( "" != $topic->name ) - {{ ucwords($topic->name) }} ({{ $topic->count }} Articles) - @endif - @endforeach -
-
- -
-@endsection - -@section ('footer') - @include ('layouts.footer') -@endsection -- cgit v1.2.3