app/template/kaiino/Product/list_single_slide_item.twig line 1

Open in your IDE?
  1. <div class="ec-contentRole__listItem">
  2.   
  3.   <div class="img img_fit">
  4.      <a href="{{ url('product_detail', {'id': Product.id}) }}"><img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}"></a>
  5.   
  6.      <ul class="color-list">
  7.       {{ Product.getColorsHTML|raw }}
  8.     </ul>
  9.     {% if Product.stock_find == false %}
  10.       <p class="list_soldout">sold out</p>
  11.     {% endif %}
  12.   </div>
  13.   <a class="meta" href="{{ url('product_detail', {'id': Product.id}) }}">
  14.       <p class="ec-contentRole__listItemTitle">{{ Product.name }}</p>
  15.       {#<p class="ec-contentRole__listItemPrice">
  16.         {% if Product.hasProductClass %}
  17.         {% if Product.getPrice02Min == Product.getPrice02Max %}
  18.           {{ Product.getPrice02IncTaxMin|number_format }}
  19.         {% else %}
  20.           {{ Product.getPrice02IncTaxMin|number_format }} ~ {{ Product.getPrice02IncTaxMax|number_format }}
  21.         {% endif %}
  22.         {% else %}
  23.           {{ Product.getPrice02IncTaxMin|number_format }}
  24.         {% endif %}円(税込)
  25.       </p>#}
  26.   </a>
  27. </div>