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

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% block stylesheet %}
  9.     <style>
  10.     </style>
  11. {% endblock %}
  12. <div class="artCategory">
  13.     <div class="artCategory-title">
  14.         <div class='component-title'>Feature</div>
  15.         <h4 class="mt-5px">あなたのテイストは?</h4>
  16.     </div>
  17.     <div class="artCategory-flex under770">
  18.         {% for category in categories %}
  19.             <div class="img-wrapper">
  20.                 <a href="/products/list?category_id={{category.id}}" class="text-decoration">
  21.                     <img src="{{ asset(category.category_image |no_image_product, 'user_data') }}" alt=category.name>
  22.                     <p>{{ category.name }}</p>
  23.                 </a>
  24.             </div>
  25.         {% endfor %}
  26.     </div>
  27.     <div class="artCategory-button">
  28.         <a href="/products/list">作品一覧を見る</a>
  29.     </div>
  30. </div>