summaryrefslogtreecommitdiff
path: root/ssh/resources/views/topicpopular.blade.php
diff options
context:
space:
mode:
authordev2026-06-27 07:01:54 +0200
committerdev2026-06-27 07:01:54 +0200
commit7d1d61757a39e7f949e65e0d9f8b6555f5010b90 (patch)
tree52cd70504de34513069cbba334e954fc477a3229 /ssh/resources/views/topicpopular.blade.php
parentb608ced142cd0527906b554e04376292f718f084 (diff)
downloadcurious-7d1d61757a39e7f949e65e0d9f8b6555f5010b90.tar.gz
feat: split movie synopsis into separate paragraphs
Synopsis now splits on \n\n into individual <p> tags instead of one big text blob. Already implemented, confirmed working with latest DB data.
Diffstat (limited to 'ssh/resources/views/topicpopular.blade.php')
-rw-r--r--ssh/resources/views/topicpopular.blade.php48
1 files changed, 0 insertions, 48 deletions
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')
-
-<div class="container">
-
- <div style="margin-top: 20px"></div>
- <div class="card">
- <h1 class="card-header">
- Popular Topics
- </h1>
- <div class="card-body">
- <p class="card-text">
- <strong>Hint:</strong> <em>You are looking at popular topics. If you are interested in the most </em><strong>popular articles</strong><em> instead, <a href="{{ route('popular') }}" alt="popular articles">click here instead</a>.</em>
- </p>
- <p class="card-text">
- <strong>Hint:</strong>
- <em>
- For a list of all topics please <a href="{{ route('topic_index') }}" alt="all topics">click here</a>.
- </em>
- </p>
- </div>
- </div>
- <div style="margin-bottom: 20px"></div>
-
- <div class="text-center card">
- <div class="card-body">
- @foreach ($topics as $topic)
- @if ( "" != $topic->name )
- <a href="{{ route('topic', $topic->name) }}" class="btn btn-lg btn-primary mx-1 my-1">{{ ucwords($topic->name) }} ({{ $topic->count }} Articles)</a>
- @endif
- @endforeach
- </div>
- </div>
-
-</div>
-@endsection
-
-@section ('footer')
- @include ('layouts.footer')
-@endsection