app/template/default/Block/Sp/Item/lm_item_description.twig line 1

Open in your IDE?
  1. <div id="item-detail">
  2.     {% include 'Common/ItemBanners.twig' %}
  3. {% if useNewItemDescription is defined and useNewItemDescription %}
  4.     <div id="new-item-description">
  5.         <p class="new-item-description-title"><span class="new-item-description-title-en">DESCRIPTION</span><span class="new-item-description-title-ja">商品説明</span></p>
  6.         {% if data.goods_new_description is defined and data.goods_new_description|trim is not empty %}
  7.             <p class="new-item-description-contents">{{ data.goods_new_description | raw }}</p>
  8.         {% endif %}
  9.         <table>
  10.             {% if data.goods_new_name is defined and data.goods_new_name %}
  11.             <tr>
  12.                 <th>商品名</th>
  13.                 <td>{{ data.goods_new_name }}</td>
  14.             </tr>
  15.             {% endif %}
  16.             <tr>
  17.                 <th>商品番号</th>
  18.                 <td>{{ hinbanStr | display_text }}</td>
  19.             </tr>
  20.             {% if data.goods_new_maker is defined and data.goods_new_maker %}
  21.             <tr>
  22.                 <th>メーカー</th>
  23.                 <td>{{ data.goods_new_maker | raw }}</td>
  24.             </tr>
  25.             {% endif %}
  26.             {% if newDescriptionColors is defined and newDescriptionColors %}
  27.             <tr>
  28.                 <th>カラー</th>
  29.                 <td>
  30.                     {{ newDescriptionColors | raw }}
  31.                 </td>
  32.             </tr>
  33.             {% endif %}
  34.             {% if data.goods_new_material is defined and data.goods_new_material %}
  35.             <tr>
  36.                 <th>素材</th>
  37.                 <td>{{ data.goods_new_material | raw }}</td>
  38.             </tr>
  39.             {% endif %}
  40.             {% if data.goods_new_spec is defined and data.goods_new_spec %}
  41.             <tr>
  42.                 <th>仕様</th>
  43.                 <td>{{ data.goods_new_spec | raw }}</td>
  44.             </tr>
  45.             {% endif %}
  46.         </table>
  47.         {% if data.goods_new_annotation is defined and data.goods_new_annotation %}
  48.         <p class="annotation">{{ data.goods_new_annotation | raw }}</p>
  49.         {% endif %}
  50.         {% if data.goods_sample_rental is defined and data.goods_sample_rental != '1' %}
  51.         <p class='has-no-sample'>※この商品はサンプルの貸し出しができません</p>
  52.         {% endif %}
  53.     </div>
  54. {% endif %}
  55. </div>