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

Open in your IDE?
  1. {#
  2.  * This file is part of the Recommend Product plugin
  3.  *
  4.  * Copyright (C) EC-CUBE CO.,LTD. All Rights Reserved.
  5.  *
  6.  * For the full copyright and license information, please view the LICENSE
  7.  * file that was distributed with this source code.
  8. #}
  9. {% set recommend_products = repository('Plugin\\Recommend42\\Entity\\RecommendProduct').getRecommendProduct %}
  10. <!-- ▼item_list▼ -->
  11. <div class="ec-shelfRole mt_large">
  12.     <div class="ec-secHeading">
  13.         <span class="ec-secHeading__en font_e">RECOMMEND</span>
  14.         <span class="ec-secHeading__line"></span>
  15.         <span class="ec-secHeading__ja">おすすめ商品</span>
  16.     </div>
  17.     <ul class="ec-shelfGrid">
  18.         {% for RecommendProduct in recommend_products %}
  19.             <li class="ec-shelfGrid__item">
  20.                 <a href="{{ url('product_detail', {'id': RecommendProduct.Product.id}) }}">
  21.                     <p class="ec-shelfGrid__item-image">
  22.                         <img src="{{ asset(RecommendProduct.Product.mainFileName|no_image_product, "save_image") }}">
  23.                     </p>
  24.                     <p class="item_name">{{ RecommendProduct.Product.name }}</p>
  25.                 </a>
  26.                 <p class="mt01">{{ RecommendProduct.comment|raw|purify|nl2br }}</p>
  27.             </li>
  28.         {% endfor %}
  29.     </ul>
  30. </div>
  31. <!-- ▲item_list▲ -->