{#
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.
#}
{% extends 'default_frame.twig' %}
{% set body_class = 'front_page' %}
{% block stylesheet %}
<style>
</style>
{% endblock %}
{% block javascript %}
<script>
</script>
{% endblock javascript %}
{% block main %}
<article id="top">
<section class="visual">
<div class="text">
<h2>LIFE TIME<br>GEAR<br> SUPPLY</h2>
<div class="pc">
<p>SLAPSは、バイク、自転車、クルマ、キャンプなど</p>
<p>幅広いアウトドアアクティビティを中心に</p>
<p>魅力的な商品を厳選して提供するネットショップです。</p>
</div><!-- /pc -->
<div class="sp">
<p>SLAPSは、バイク、自転車、キャンプなど、</p>
<p>幅広いアウトドアアクティビティを中心に、</p>
<p>魅力的なアイテムを厳選してご提供しています。</p>
</div><!-- /pc -->
</div><!-- /text -->
</section><!-- /visual -->
<section class="news" style="display: none">
<header>
<h3>NEWS</h3>
<div class="news-list">
<ul>
<li>
<article>
<time></time>
<h4></h4>
</article>
</li>
</ul>
</div><!-- /news-list -->
</header>
</section><!-- /news -->
<section class="item">
<div class="content">
<header>
<h2>ALL PRODUCTS</h2>
</header>
{% set recommend_products = repository('Plugin\\Recommend42\\Entity\\RecommendProduct').getRecommendProduct %}
<!-- ▼item_list▼ -->
<div class="item-list">
<ul>
{% for RecommendProduct in recommend_products %}
<li class="ec-shelfGrid__item">
<article>
<a href="{{ url('product_detail', {'id': RecommendProduct.Product.id}) }}">
<div class="image">
<img src="{{ asset(RecommendProduct.Product.mainFileName, "save_image") }}">
</div><!-- /image -->
<div class="text">
{{ RecommendProduct.comment|raw|purify }}
<span class="price">
{% if RecommendProduct.Product.hasProductClass %}
{% if RecommendProduct.Product.getPrice02Min == RecommendProduct.Product.getPrice02Max %}
{{ RecommendProduct.Product.getPrice02IncTaxMin|price }}
{% else %}
{{ RecommendProduct.Product.getPrice02IncTaxMin|price }} ~ {{ RecommendProduct.Product.getPrice02IncTaxMax|price }}
{% endif %}
{% else %}
{{ RecommendProduct.Product.getPrice02IncTaxMin|price }}
{% endif %}
</span><!-- /price -->
<span class="button">ITEM PAGE</span>
</div><!-- /text -->
</a>
</article>
</li>
{% endfor %}
</ul>
</div><!--/item-list -->
<!-- ▲item_list▲ -->
</div><!-- /content -->
</section>
<section class="sns" style="display: none;">
<header>
<h2>INSTAGRAM</h2>
</header>
インスタのフィードが入る
</section><!-- /sns -->
</article><!-- /top -->
{% endblock %}