app/Plugin/DesignTag4/Resource/template/tag_list.twig line 1

Open in your IDE?
  1. {# タグ #}
  2. <ul class="ec-shelfRole__tags">
  3. {% if Product is defined %}
  4. {% for Tag in Product.Tags %}
  5.     {% if Tag.show_product_list_flg %}
  6.         <li class="ec-shelfRole__tag tag_{{ Tag.id }}"
  7.         >{{ Tag.name }}</li>
  8.     {% endif %}
  9. {% endfor %}
  10. {% endif %}
  11. </ul>