app/template/biotop/Block/check_product42.twig line 1

Open in your IDE?
  1. {#
  2. Copyright(c) 2019 SYSTEM FRIEND INC.
  3. #}
  4. {% if CheckProducts|length > 0 %}
  5.     <div class="top_inner">
  6.         <div class="latest_block">
  7.             <div class="same_category_product_area">
  8.                 <div class="same_category_product_block">
  9.                     <p class="same_category_name">{{'check_product42.front.block.check_products.title.ja'|trans}}</p>
  10.                     <div class="product_grid">
  11.                         {% for Product in CheckProducts %}
  12.                             <div class="product_item">
  13.                                 <a href="{{ url('product_detail', {'id': Product.id}) }}">
  14.                                     <div class="product_image">
  15.                                         <img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}">
  16.                                     </div>
  17.                                     <p class="product_name">{{ Product.name }}</p>
  18.                                     <p class="product_price">{% if Product.hasProductClass %}
  19.                                         {% if Product.getPrice02Min == Product.getPrice02Max %}
  20.                                             {{ Product.getPrice02IncTaxMin|price }}
  21.                                         {% else %}
  22.                                             {{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}
  23.                                         {% endif %}
  24.                                     {% else %}
  25.                                         {{ Product.getPrice02IncTaxMin|price }}
  26.                                     {% endif %}</p>
  27.                                 </a>
  28.                             </div>
  29.                         {% endfor %}
  30.                     </div>
  31.                 </div>
  32.             </div>
  33.         </div>
  34.     </div>
  35. {% endif %}