app/template/default/Block/deliver.twig line 1

Open in your IDE?
  1. {% set cat_id = cat_id_deliver %}
  2. {% set Products = get_category_product(cat_id,6) %}
  3.     {% if Products|length > 0 %}
  4. <section class="deliver">
  5.         
  6. <div class="heading">
  7. <div class="eng">Delivered</div>
  8. <h2>実際にお届けした商品</h2>
  9. <div class="text">
  10.     <p>
  11.         これまでお客様に実際にお届けした商品です。<br>ギフトに贈る際にもご参考になさってください。
  12.     </p>
  13. </div>
  14. </div>
  15. <div class="content">
  16.     <ul>
  17.    {% for Product in Products %}
  18.     {% if Product|length > 0 %}
  19.     {% endif %}
  20.         <li>
  21.  {% set change_image_size = change_image_size( asset(Product.main_list_image|no_image_product, 'save_image'),280,280 ) %} {# サムネ画像のサイズ変更 #}
  22.             <a href="{{ url('product_detail', {'id': Product.id}) }}">
  23.                 <div class="image">
  24.         <img src="{{ change_image_size }}" alt="">
  25.                 </div>
  26.                 <div class="catch">
  27.                   <div class="price">                    
  28.                     {% if Product.hasProductClass %}
  29.                             {% if Product.getPrice02Min == Product.getPrice02Max %}
  30.                                 {{ Product.getPrice02IncTaxMin|price }}
  31.                             {% else %}
  32.                                 {{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}
  33.                             {% endif %}
  34.                         {% else %}
  35.                             {{ Product.getPrice02IncTaxMin|price }}
  36.                         {% endif %}  
  37.                       </div>
  38.                     <div class="title">{{ Product.name }}</div>
  39.                 </div>
  40.             </a>
  41.         </li>
  42.         {% endfor %}
  43.     </ul>
  44.     <div class=" common_btn">
  45.     <a href="{{url('product_list')}}?category_id={{cat_id}}">商品一覧<span></span></a>
  46. </div>
  47. </div>
  48. </section>
  49. {% else %}
  50.     <div class="none_recommend" style="padding-bottom: 150px;"></div>
  51.     {% endif %}