app/template/default/Common/BreadCrumb.twig line 1

Open in your IDE?
  1. {# @version  EC=CUBE4.1 TWIG
  2.  # @copyright 株式会社 翔 kakeru.co.jp
  3.  # @author
  4.  # 2022年08月20日作成
  5.  #
  6.  # app/template/default/Common/BreadCrumb.twig
  7.  #
  8.  #
  9.  # ぱんクズを共通化する
  10.  #
  11.  #
  12.  #
  13.  #                                                  ≡≡≡┏(^o^)┛
  14.  ##############################################################}
  15.  <div id="pankuzu" class="ec-layoutRole__contents">
  16.     <ul itemscope itemtype="{{eccube_config.BreadCrumbs.itemtyp[0]}}">
  17.         {% for idx, BreadCrumb in BreadCrumbs %}
  18.             {% if loop.last == false %}
  19.                 <li itemprop="itemListElement" itemscope itemtype="{{eccube_config.BreadCrumbs.itemtyp[1]}}">
  20.                     <meta itemprop="position" content="{{ idx+1 }}" />
  21.                     <a href="{{ BreadCrumb.href }}" itemprop="item"><span itemprop="name">{{ BreadCrumb.label }}</span></a>&nbsp;&gt;&nbsp;
  22.                 </li>
  23.             {% else %}
  24.                 <li>
  25.                     <span class="nowpage gray-800 bold-700">{{ BreadCrumb.label }}</span>
  26.                 </li>
  27.             {% endif %}
  28.         {% endfor %}
  29.     </ul>
  30. </div>