app/template/default/Block/lm_item_size_guide.twig line 1

Open in your IDE?
  1. {% if sashikomi_image_info is defined and sashikomi_image_info %}
  2.     {% if sashikomi_image_info.alt_ut is defined and sashikomi_image_info.alt_ut %}
  3.         {% set alt = sashikomi_image_info.alt_ut %} 
  4.     {% else %}
  5.         {% set alt = "#{data.goods_name}サイズガイド" %} 
  6.     {% endif %}
  7.     <div class="top_sashikomi_wrapper sashikomi" style="margin: 30px 0;">
  8.         {{ ("<img src='#{sashikomi_image_info.path | escape}' alt='#{alt | escape}'>" | lm_sashikomi) | raw}}
  9.     </div>
  10. {% endif %}