templates/front-office/partials/sewing/_item.html.twig line 1

Open in your IDE?
  1. <article class="item meli-width-25 {% if key%3 != 0 %}space-right{% endif %}"
        {% if articleHeight is defined %}style="height:{{ articleHeight }}"{% endif %}
    >
        <a href="{{ path('sewing_read',{'id':s.id,'slug':s.name|url}) }}">
    
            {% include "front-office/partials/sewing/_item_picture.html.twig" %}
    
            <div class="text-box">
                <p class="title txt-century txt-size15 txt-green txt-regular">{{ s.name }}</p>
                <p class="price txt-century txt-size15 txt-red txt-regular">
                    {{ (s.priceHT*(1+s.tva))|number_format(2,","," ") }} € TTC
                </p>
            </div>
        </a>
    </article>