templates/home/press.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Ça parle de nous | {{ parent() }}{% endblock %}
  3. {% block body %}
  4. <h1 class="text-5xl font-bold uppercase text-center font-vogue">Un peu de lecture !</h1>
  5.     <section>
  6.         <p class="mt-5 text-xl font-semibold">Voici une liste non exhaustive d'articles parlant de nos géants ou de nos défilés</p>
  7.         <div class="grid {{ 'grid grid-cols-1 ' ~ (articles|length < 3 ? 'md:grid-cols-2' : 'md:grid-cols-3') ~ ' gap-x-5 gap-y-14 md:gap-y-10 mt-16' }}">
  8.             {% for article in articles %}
  9.                 <div class="flex flex-col px-2 py-3 bg-light/[0.8] border-2 md:border-4 border-light rounded-xl">
  10.                     <h2 class="text-center font-bold text-xl uppercase">{{ article.title }}</h2>
  11.                     <p class="text-right mt-2 mb-2 font-semibold capitalize">{{ article.paper }}</p>
  12.                     <a href="{{ article.link }}" target="_blank">
  13.                         <img class="rounded-xl" src="{{ asset('img/upload/articles/' ~ article.image) }}"
  14.                              alt="{{ article.title }}" title="Photo illustrant l'article &#34;{{ article.title }}&#34;">
  15.                     </a>
  16.                     <article class="mt-3">
  17.                         {{ article.content | raw }}
  18.                     </article>
  19.                 </div>
  20.             {% endfor %}
  21.         </div>
  22.     </section>
  23. {% endblock %}