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

Open in your IDE?
  1. <div id="item-detail">
  2. {% if sashikomi_image_info is defined and sashikomi_image_info %}
  3.     {% if sashikomi_image_info.alt_ut is defined and sashikomi_image_info.alt_ut %}
  4.         {% set alt = sashikomi_image_info.alt_ut %} 
  5.     {% else %}
  6.         {% set alt = "#{data.goods_name}サイズガイド" %} 
  7.     {% endif %}
  8.     <div class="adjust-contents-to-sp top_sashikomi_wrapper">
  9.         {{ ("<img src='#{sashikomi_image_info.path | escape}' alt='#{alt | escape}'>" | lm_sashikomi) | raw}}
  10.     </div>
  11. {% endif %}
  12. </div>