templates/front/default/book.html.twig line 1

  1. <img class='img-entourage img-entourage-haut-book img-entourage-haut' src="{{ asset('pictures/book/haut-book.webp') }}"/>
  2. <div id='grille_book' class="container-section content-section-book">
  3.     <div class="content-container-section">
  4.         <h2 class="title-desktop"><a class="vertical-text"><img src="{{ asset('pictures/book/titre_book.webp') }}" /></a></h2>
  5.         <h2 class="title-responsive">
  6.             <a>Le</a><a>Book</a>
  7.         </h2>
  8.         <div id="menu-tri">
  9.             <div>
  10.                 <a class="filter-btn all" data-filter="all">Tous les projets</a>
  11.             </div>
  12.             <div>
  13.                 {% for c in categories  %}
  14.                     <a class="filter-btn" data-filter=".{% if c.name == '3D' %}dimension{% else %}{{ c.name }} {% endif %}">{{c.name}}</a>
  15.                 {% endfor %}
  16.             </div>
  17.         </div>
  18.         <div id='contain-survol'>
  19.         </div>
  20.         <div class="container">
  21.             {% for b in book %}
  22.                 {% if b|imgBookIndex %}
  23.                     <div data-url="{{ path('detail_book') }}" class="slide-detail-book mix-target  {% if b.categorie.name == '3D' %}dimension{% else %}{{ b.categorie.name }} {% endif %}"  id="{{ b.id }}" data-order="5" data-year="4">
  24.                         <a class="survol"> {{b.hover|replace({'<br>':'</div><div>'})|raw}} </a>
  25.                         <a href="{{ path('detail_book') }}" id="{{ b.id }}" class="img-elt-book popup-responsive">
  26.                             <img src="{{ book_path ~ '/' ~ b|imgBookIndex }}" />
  27.                         </a>
  28.                     </div>
  29.                 {% endif %}
  30.             {%endfor%}
  31.         </div>
  32.     </div>
  33. </div>
  34. <img class='img-entourage img-entourage_bas-book img-entourage-bas' src="{{asset('pictures/book/fond_bas_book.webp') }}"/>