{% extends '@SyliusShop/layout.html.twig' %}
{% block title %}{{ 'app.ui.brands'|trans }} | {{ parent() }}{% endblock %}
{% block content %}
<div class="container px-2 px-xl-4">
{% block breadcrumb %}
{% include '@SyliusShop/Brand/Index/_breadcrumb.html.twig' %}
{% endblock %}
<div class="bg-white p-2 p-md-3 my-2 my-md-3">
{% include '@SyliusShop/Brand/Index/_header.html.twig' %}
</div>
<div class="row mx-n2 mx-md-n3 pb-4">
{% if brands|length > 0 %}
{% for brand in brands %}
<div class="col-xl-3 col-md-4 col-6 mb-lg-4 mb-3 px-md-3 px-2">
<a href="{{ path('app_shop_brand_product_index', {'code' : brand.code}) }}" >
{% include "@SyliusShop/Brand/Box/_content.html.twig" with {'brand' : brand } %}
</a>
</div>
{% endfor %}
{% else %}
<span>Il n'y a aucune marque pour le moment</span>
{% endif %}
</div>
</div>
{% endblock %}