{#
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.
#}
{% if pageinrange is defined %}
{% set pageinrange = pageinrange %}
{% else %}
{% set pageinrange = false %}
{% endif %}
{% if pages.pageCount > 1 %}
<div id="pagination_wrap" class="pagination">
<ul>
{% if pageinrange and pages.firstPageInRange != 1 %}
{# 最初へリンクを表示 #}
<li class="pagenation__item-first">
<a href="{{ path(app.request.attributes.get('_route'), app.request.query.all|merge({'pageno': pages.first})) }}"
aria-label="First"><span aria-hidden="true">最初へ</span></a>
</li>
{% endif %}
{% if pages.previous is defined %}
<li class="pagenation__item-previous">
<a href="{{ path(app.request.attributes.get('_route'), app.request.query.all|merge({'pageno': pages.previous})) }}"
aria-label="Previous"><span aria-hidden="true">前へ</span></a>
</li>
{% endif %}
{% if pageinrange and pages.firstPageInRange != 1 %}
{# 1ページリンクが表示されない場合、「...」を表示 #}
<li>...</li>
{% endif %}
{% for page in pages.pagesInRange %}
{% if page == pages.current %}
<li class="pagenation__item active"><a href="{{ path(app.request.attributes.get('_route'), app.request.query.all|merge({'pageno': page})) }}"> {{ page }} </a></li>
{% else %}
<li class="pagenation__item"><a href="{{ path(app.request.attributes.get('_route'), app.request.query.all|merge({'pageno': page})) }}"> {{ page }} </a></li>
{% endif %}
{% endfor %}
{% if pageinrange and pages.last != pages.lastPageInRange %}
{# 最終ページリンクが表示されない場合、「...」を表示 #}
<li>...</li>
{% endif %}
{% if pages.next is defined %}
<li class="pagenation__item-next">
<a href="{{ path(app.request.attributes.get('_route'), app.request.query.all|merge({'pageno': pages.next})) }}"
aria-label="Next"><span aria-hidden="true">次へ</span></a>
</li>
{% endif %}
{% if pageinrange and pages.last != pages.lastPageInRange %}
{# 最後へリンクを表示 #}
<li class="pagenation__item-last">
<a href="{{ path(app.request.attributes.get('_route'), app.request.query.all|merge({'pageno': pages.last})) }}"
aria-label="Last"><span aria-hidden="true">最後へ</span></a>
</li>
{% endif %}
</ul>
</div>
{% endif %}