<div class="ui bottom attached tab segment active" data-tab="details"><div class="ui two column stackable grid"> <div class="column"> {% if product.description is defined %} {% if product.description is not empty %} <h3 class="product-details__description-title h4">Description complémentaire</h3> <div class="product-details__description-content">{{ product.description | raw }}</div> {% else %} {{ 'sylius.ui.no_description'|trans }}. {% endif %} {% endif %} <div class="product-details__additional-description background-darker"> {% if SimpleAttributes.biere is defined %} {% set biere = SimpleAttributes.biere %} {% if biere is not null and biere is not empty %} <div class="product-details__icon biere"> <img src="{{ asset('assets/shop/img/beer-red.svg') }}" alt=""> <div> <strong>{{ 'sylius.ui.accordbieres'|trans }}</strong> <br > <span>{{ biere.value }}</span> </div> </div> {% endif %} {% endif %} {% if SimpleAttributes.vin is defined %} {% set vin = SimpleAttributes.vin %} {% if vin is not null and vin is not empty %} <div class="product-details__icon vin"> <img src="{{ asset('assets/shop/img/wine-red.svg') }}" alt=""> <div> <strong>{{ 'sylius.ui.accordvins'|trans }}</strong> <br > <span>{{ vin.value }}</span> </div> </div> {% endif %} {% endif %} </div> </div> <div class="column"> <div class="ui two column stackable grid"> <div class="column product-details__additional-content" id="col-one"> {% if SimpleAttributes.degre_aromatique is defined %} {% set degre_aromatique = SimpleAttributes.degre_aromatique %} {% if degre_aromatique is not null and degre_aromatique is not empty %} <div class="product-details__icon degre_aromatique"> <img src="{{ asset('assets/shop/img/arome-red.png') }}" alt=""> <div> <strong>{{ 'sylius.ui.puissancearomatique'|trans }}</strong> <br /> <span>{{ degre_aromatique.value }}</span> </div> </div> {% endif %} {% endif %} {% if SimpleAttributes.aspect is defined %} {% set aspect = SimpleAttributes.aspect %} {% if aspect is not null and aspect is not empty %} <div class="product-details__icon aspect"> <img src="{{ asset('assets/shop/img/cheese-2-red.svg') }}" alt=""> <div> <strong>{{ 'sylius.ui.aspect'|trans }}</strong> <br /> <span>{{ aspect.value }}</span> </div> </div> {% endif %} {% endif %} {% if SimpleAttributes.texture is defined %} {% set texture = SimpleAttributes.texture %} {% if texture is not null and texture is not empty %} <div class="product-details__icon texture"> <img src="{{ asset('assets/shop/img/cheese-3-red.svg') }}" alt=""> <div> <strong>{{ 'sylius.ui.texture'|trans }}</strong> <br /> <span>{{ texture.value }}</span> </div> </div> {% endif %} {% endif %} </div> <div class="column product-details__additional-content" id="col-two"> {% if SimpleAttributes.gout is defined %} {% set gout = SimpleAttributes.gout %} {% if gout is not null and gout is not empty %} <div class="product-details__icon gout"> <img src="{{ asset('assets/shop/img/mouth-red.svg') }}" alt=""> <div> <strong>{{ 'sylius.ui.gout'|trans }}</strong> <br /> <span>{{ gout.value }}</span> </div> </div> {% endif %} {% endif %} {% if SimpleAttributes.odeur is defined %} {% set odeur = SimpleAttributes.odeur %} {% if odeur is not null and odeur is not empty %} <div class="product-details__icon odeur"> <img src="{{ asset('assets/shop/img/nose-red.svg') }}" alt=""> <div> <strong>{{ 'sylius.ui.odeur'|trans }}</strong> <br /> <span>{{ odeur.value }}</span> </div> </div> {% endif %} {% endif %} {% if SimpleAttributes.affinage is defined %} {% set affinage = SimpleAttributes.affinage %} {% if affinage is not null and affinage is not empty %} <div class="product-details__icon affinage"> <img src="{{ asset('assets/shop/img/affinage-red.svg') }}" alt=""> <div> <strong>{{ 'sylius.ui.affinage'|trans }}</strong> <br /> <span>{{ affinage.value }}</span> </div> </div> {% endif %} {% endif %} </div> </div> </div></div></div>