fix: links popular movies to their download options

This commit is contained in:
2025-04-25 16:50:33 -05:00
parent 0120ddcedd
commit 6b88483635
2 changed files with 18 additions and 3 deletions

View File

@@ -1,4 +1,14 @@
<div{{ attributes }}>
<img src="{{ image }}" class="w-40 rounded-md" />
<h3 class="text-center text-gray-50 max-w-[16ch] text-extrabold">{{ title }}</h3>
<a href="{{ path('app_search_result', {
mediaType: "movies",
tmdbId: tmdbId
}) }}">
<img src="{{ image }}" class="w-40 rounded-md" />
</a>
<a href="{{ path('app_search_result', {
mediaType: "movies",
tmdbId: tmdbId
}) }}">
<h3 class="text-center text-gray-50 max-w-[16ch] text-extrabold">{{ title }}</h3>
</a>
</div>