app/template/myufull1/Block/etuna_checked_item.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) Takashi Otaki All Rights Reserved.
  4. For the full copyright and license information, please view the LICENSE
  5. file that was distributed with this source code.
  6. #}
  7. {% if CheckedItem is not empty %}
  8.   <style type="text/css">
  9.     .slide-wrap {
  10.       margin-bottom: 20px;
  11.       overflow-y: hidden;
  12.       overflow-x: scroll;
  13.       display: flex;
  14.       -webkit-overflow-scrolling: touch;
  15.       overflow-scrolling: touch;
  16.     }
  17.     @media only screen and (max-width: 767px) {
  18.       .side-box {
  19.         flex: 0 0 40%;
  20.         padding: 0 8px;
  21.       }
  22.     }
  23.     @media only screen and (min-width: 768px) {
  24.       .side-box {
  25.         flex: 0 0 18%;
  26.         padding: 0 8px;
  27.       }
  28.     }
  29.     .inner, .inner img {
  30.       max-width: 100%;
  31.     }
  32.   </style>
  33.   <div class="ec-role product-list">
  34.     {% if Config.checked_item_title != "" %}
  35.       <h3 class="title-bottom-line mt-3">{{ Config.checked_item_title }}</h3>
  36.     {% endif %}
  37.     <div class="slide-wrap">
  38.       {% for item in CheckedItem %}
  39.         <div class="side-box">
  40.           <div class="inner">
  41.             <a href="{{ url('product_detail', {'id': item[0].id}) }}">
  42.               {% if item[0].ProductImage[0] is defined %}
  43.                 <img src="{{ asset(item[0].ProductImage[0], 'save_image') }}" loading="lazy">
  44.               {% else %}
  45.                 <img src="{{ asset(''|no_image_product, 'save_image') }}" loading="lazy">
  46.               {% endif %}
  47.               {% if Config.checked_item_disp_title == 1 %}
  48.                 <p>{{ item[0].name }}</p>
  49.               {% endif %}
  50.               {% if Config.checked_item_disp_price == 1 %}
  51.                 <p class="price02_default">
  52.                   {% if item[0].hasProductClass %}
  53.                     {% if item[0].getPrice02Min == item[0].getPrice02Max %}
  54.                       {{ item[0].getPrice02IncTaxMin|price }}
  55.                     {% else %}
  56.                       {{ item[0].getPrice02IncTaxMin|price }} ~ {{ item[0].getPrice02IncTaxMax|price }}
  57.                     {% endif %}
  58.                   {% else %}
  59.                     {{ item[0].getPrice02IncTaxMin|price }}
  60.                   {% endif %}
  61.                 </p>
  62.               {% endif %}
  63.               {% if Config.checked_item_disp_code == 1 %}
  64.                 <p>{{ item[0].code_min }}{% if item[0].code_min != item[0].code_max %} ~ {{ item[0].code_max }}{% endif %}</p>
  65.               {% endif %}
  66.               {% if Config.checked_item_disp_description_detail == 1 %}
  67.                 <p>{{ item[0].description_detail|raw|nl2br }}</p>
  68.               {% endif %}
  69.             </a>
  70.             {% if Config.checked_item_disp_cat == 1 %}
  71.               {% for ProductCategory in item[0].ProductCategories %}
  72.                 <p>
  73.                   {% for Category in ProductCategory.Category.path %}
  74.                     <a href="{{ url('product_list') }}?category_id={{ Category.id }}">{{ Category.name }}</a> {%- if loop.last == false %}
  75.                     <span>></span>{% endif -%}
  76.                   {% endfor %}
  77.                 </p>
  78.               {% endfor %}
  79.             {% endif %}
  80.           </div>
  81.         </div>
  82.       {% endfor %}
  83.     </div>
  84.   </div>
  85. {% endif %}