{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% block stylesheet %}
<style>
</style>
{% endblock %}
<div class="artCategory">
<div class="artCategory-title">
<div class='component-title'>Feature</div>
<h4 class="mt-5px">あなたのテイストは?</h4>
</div>
<div class="artCategory-flex under770">
{% for category in categories %}
<div class="img-wrapper">
<a href="/products/list?category_id={{category.id}}" class="text-decoration">
<img src="{{ asset(category.category_image |no_image_product, 'user_data') }}" alt=category.name>
<p>{{ category.name }}</p>
</a>
</div>
{% endfor %}
</div>
<div class="artCategory-button">
<a href="/products/list">作品一覧を見る</a>
</div>
</div>