templates/frontend/footer_lists.html.twig line 1

Open in your IDE?
  1. <ul class="{{ horizontal ? 'half-line' : 'half-col' }}">
  2. {% for item in items %}
  3.     <li>
  4.         <a href="{{ path('frontend_search_by_url', {'terms':item.maker ~ (item.group ? '-"' ~ item.group ~ '"': '')}) }}">
  5.             {% if images is defined and images %}
  6.                 <div class="maker-logo">
  7.                     {% if asset_exists('bundles/vpauto/frontend/images/footer/maker-logos/' ~ item.image) %}
  8.                         <img src="{{ asset('bundles/vpauto/frontend/images/footer/maker-logos/' ~ item.image) }}" alt="{{ item.maker }}" loading="lazy" />
  9.                     {% else %}
  10.                         <img src="{{ asset('bundles/vpauto/frontend/images/footer/maker-logos/vpauto.webp') }}" alt="{{ item.maker }}" loading="lazy" />
  11.                     {% endif %}
  12.                 </div>
  13.             {% endif %}
  14.             {{ item.name }}
  15.         </a> ({{ item.cnt }})
  16.     </li>
  17. {% if loop.index == breakpoint %}
  18. </ul>
  19. <ul class="{{ horizontal ? 'half-line' : 'half-col' }}">
  20. {% endif %}
  21. {% endfor %}
  22. </ul>