app/template/default/Item/Parts/goods_label_list.twig line 1

Open in your IDE?
  1. {% if labelList is not empty %}
  2. <div class="goods-icon-wrapper">
  3.     <ul>
  4. {% for label in labelList %}
  5.         <li class="{{ label.class }}">{{ label.label }}</li>
  6. {% endfor %}
  7.     </ul>
  8. </div>
  9. {% endif %}