{#
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.
#}
{% set NewsList = repository('Eccube\\Entity\\News').getList() %}
{% block javascript %}
<script>
$(function() {
$('.ec-newsRole__news').each(function() {
var listLength = $(this).find('.ec-newsRole__newsItem').length;
if (listLength > 5) {
$(this).find('.ec-newsRole__newsItem:gt(4)').each(function() {
$(this).hide();
});
$(this).append('<a id="news_readmore" class="ec-inlineBtn--top">{{ 'more'|trans }}</a>');
var dispNum = 5;
$(this).find('#news_readmore').click(function() {
dispNum += 5;
$(this).parent().find('.ec-newsRole__newsItem:lt(' + dispNum + ')').show();
if (dispNum >= listLength) {
$(this).hide();
}
})
}
});
$('.ec-newsRole__newsHeading').on('click', function() {
$newsItem = $(this).parent('.ec-newsRole__newsItem');
$newsDescription = $newsItem.children('.ec-newsRole__newsDescription');
if ($newsDescription.css('display') == 'none') {
$newsItem.addClass('is_active');
$newsDescription.slideDown(300);
} else {
$newsItem.removeClass('is_active');
$newsDescription.slideUp(300);
}
return false;
});
});
</script>
{% endblock %}
<section class="top_inner">
<section class="top_news">
<div class="wrap">
<div class="top_box">
<div class="common_ttl_box">
<p class="en_ttl f_cent">News</p>
<h2 class="ttl">ビオトープからのお知らせ</h2>
<p class="ttl_comment">大阪難波・心斎橋・北新地の花屋biotop(ビオトープ)では<br>お客様がより快適にお花探しができるよう、<br class="sp">定期的に情報を配信しております。ぜひご確認ください。</p>
</div>
</div>
<div class="news_list">
<ul>
{% for News in NewsList %}
<li>
<a {% if News.url %} href="{{ News.url }}" {% else %} href="{{ url('news_detail', {'id': News.id}) }}" {% endif %}>
<p class="ttl">{{ News.publish_date|date_day }}</p>
<p class="ttl">{{ News.title }}</p>
</a>
</li>
{% endfor %}
</ul>
</div>
<div style="text-align: center;"></div>
</div>
<div class="top_mother_ban_area">
<div class="wrap">
<!-- <a href="">
<div style="text-align: center;">
<img class="pc" src="/html/user_data/assets/img/common/banner_mothersday_yoko.png" alt="" width="100%">
<img class="sp" src="/html/user_data/assets/img/common/banner_mothersday_yoko_sp.png" alt="" width="100%">
</div>
</a> -->
<!-- <a href="">
<div style="text-align: center;">
<img class="pc" src="/html/user_data/assets/img/common/banner_fathersday_yoko.png" alt="" width="100%">
<img class="sp" src="/html/user_data/assets/img/common/banner_fathersday_yoko_sp.png" alt="" width="100%">
</div>
</a> -->
<a href="https://www.biotop.ne.jp/products/list?category_id=54">
<div style="text-align: center;">
<img class="pc" src="/html/user_data/assets/img/common/banner_new_arrival_pc.jpg" alt="" width="100%">
<img class="sp" src="/html/user_data/assets/img/common/banner_new_arrival_sp.jpg" alt="" width="100%">
</div>
</a>
</div>
</div>
</section>
</section>