templates/pages/internes/agencesvoyages/partials/__card_random.html.twig line 1

Open in your IDE?
  1. {% for agence in agences %}
  2.     <div class="col-lg-4 col-md-6">
  3.         <a style="margin-bottom: 20px!important;" href="{{ path('agencesvoyages.show', {'id': agence.id, 'slug':  agence.slug}) }}" class="best-selling-tour__item">
  4.             <div class="best-selling-tour__item__thumb">
  5.                 {% if agence.filename %}
  6.                     <img src="{{ vich_uploader_asset(agence, 'imageFile') | imagine_filter('thumbnail_card') }}" alt="{{ agence.name }}">
  7.                 {% else %}
  8.                     <img src="{{ asset('assetics/internes/images/empty.jpg') }}" alt="{{ agence.name }}">
  9.                 {% endif %}
  10.                 <div class="best-selling-tour__item__info">
  11.                     <div class="best-selling-tour__item__tittle">
  12.                         <p style="font-weight: bold;color: darkorange; text-shadow: 0px 0px 3px #000;">Directions</p>
  13.                     </div>
  14.                 </div>
  15.             </div>
  16.         </a>
  17.         <h3 class="trending-tour-item__name" style="font-size: 12px!important;">
  18.             <a href="{{ path('agencesvoyages.show', {'id': agence.id, 'slug':  agence.slug}) }}">{{ agence.name|u.truncate(33, '...') }}</a>
  19.         </h3>
  20.     </div>
  21. {% endfor %}