app/template/yamaria/Block/detail_product_category.twig line 1

Open in your IDE?
  1. {# 関連カテゴリ #}
  2. {% if Product.ProductCategories is not empty %}
  3. <div class="ec-productRole__category ec-role ym-role ym-productRole__category">
  4.     <div class="ym-heading">
  5.         <span class="ym-heading_lv2">{{ '関連カテゴリ'|trans }}</span>
  6.     </div>
  7.     {% for ProductCategory in Product.ProductCategories %}
  8.         <ul>
  9.             <li>
  10.                 {% for Category in ProductCategory.Category.path %}
  11.                     <a href="{{ url('product_list') }}?category_id={{ Category.id }}">{{ Category.name }}</a> {%- if loop.last == false %}
  12.                     <span>></span>{% endif -%}
  13.                 {% endfor %}
  14.             </li>
  15.         </ul>
  16.     {% endfor %}
  17. </div>
  18. {% endif %}