You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WF-Website/vue/templates/quoteLittle.html.twig

20 lines
796 B

<h2>{{ titre }}</h2>
{% if quotes|length > 0 %}
<div class='suggestions-container'>
{% for quote in quotes %}
<a href="{{ racine }}/quote/{{ quote.id }}" class="link-citation">
<div class="citation-container quote">
<img src="{{ quote.imgpath }}" alt="{{ quote.carac }}" class="citation-image">
<div class="text-content">
<p class="citation">"{{ quote.content }}"</p>
<p class="movie">- {{ quote.titleSrc }}</p>
<p class="character">Personnage : {{ quote.carac }}</p>
<p class="year">Année : {{ quote.dateSrc }}</p>
</div>
</div>
</a>
{% endfor %}
</div>
{% else %}
<p>Aucune {{ titre }} n'a été trouvée.</p>
{% endif %}