<ul class="{{ horizontal ? 'half-line' : 'half-col' }}">
{% for item in items %}
<li>
<a href="{{ path('frontend_search_by_url', {'terms':item.maker ~ (item.group ? '-"' ~ item.group ~ '"': '')}) }}">
{% if images is defined and images %}
<div class="maker-logo">
{% if asset_exists('bundles/vpauto/frontend/images/footer/maker-logos/' ~ item.image) %}
<img src="{{ asset('bundles/vpauto/frontend/images/footer/maker-logos/' ~ item.image) }}" alt="{{ item.maker }}" loading="lazy" />
{% else %}
<img src="{{ asset('bundles/vpauto/frontend/images/footer/maker-logos/vpauto.webp') }}" alt="{{ item.maker }}" loading="lazy" />
{% endif %}
</div>
{% endif %}
{{ item.name }}
</a> ({{ item.cnt }})
</li>
{% if loop.index == breakpoint %}
</ul>
<ul class="{{ horizontal ? 'half-line' : 'half-col' }}">
{% endif %}
{% endfor %}
</ul>