21 lines
1.1 KiB
Twig
21 lines
1.1 KiB
Twig
{% extends 'base.html.twig' %}
|
|
{% block body %}
|
|
<div class="container w-full ml-60 p-4 grid sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-8 2xl:grid-cols-12 gap-4">
|
|
{% for manga in mangas %}
|
|
<div class="bg-white overflow-hidden border-gray-300 hover:shadow-2xl hover:border transition-shadow duration-300">
|
|
<a href="{{ path('manga_show', { 'mangaSlug': manga.slug }) }}">
|
|
<img src="{{ manga.imageUrl ?? 'https://placehold.co/150x220' }}" alt="{{ manga.title }}" class="w-full">
|
|
{# <img src="https://placehold.co/150x220" alt="{{ manga.title }}" class="w-full">#}
|
|
</a>
|
|
<div class="p-4">
|
|
<p class="text-lg font-semibold">{{ manga.title }}</p>
|
|
<p class="text-gray-600">Auteur</p>
|
|
<p class="text-gray-500">Ajouter: Jun 2 2024</p>
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
<p class="col-span-full text-center text-gray-500">Aucun manga trouvé.</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|