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

Open in your IDE?
  1. {% if s is not defined %}
        {% set s = sewing %}
    {% endif %}
    
    <div class="partial-item-picture-img-box meli-center-center">
        <img loading="lazy"
             src="{{ asset('uploads/sewings/sewing-'~s.id~'/'~s.picture) }}"
             alt="{{ s.pictureAlt }}"
             class="{% if showBig is defined and showBig == true %}js-modal-product-btn{% endif %}"
        >
        {% if withoutFilter is not defined %}
            <div class="title-box">
                <div class="triangle"></div>
                <p class="title txt-dancing txt-bold
                    {% if textSize is not defined %}txt-size35{% else %}{{ textSize }}{% endif %}
                 txt-green txt-center">{{ s.name }}</p>
            </div>
        {% endif %}
    </div>