{# @version EC=CUBE4.1 TWIG
# @copyright 株式会社 翔 kakeru.co.jp
# @author
# 2022年08月20日作成
#
# app/template/default/Common/BreadCrumb.twig
#
#
# ぱんクズを共通化する
#
#
#
# ≡≡≡┏(^o^)┛
##############################################################}
<div id="pankuzu" class="ec-layoutRole__contents">
<ul itemscope itemtype="{{eccube_config.BreadCrumbs.itemtyp[0]}}">
{% for idx, BreadCrumb in BreadCrumbs %}
{% if loop.last == false %}
<li itemprop="itemListElement" itemscope itemtype="{{eccube_config.BreadCrumbs.itemtyp[1]}}">
<meta itemprop="position" content="{{ idx+1 }}" />
<a href="{{ BreadCrumb.href }}" itemprop="item"><span itemprop="name">{{ BreadCrumb.label }}</span></a> >
</li>
{% else %}
<li>
<span class="nowpage gray-800 bold-700">{{ BreadCrumb.label }}</span>
</li>
{% endif %}
{% endfor %}
</ul>
</div>