Guest User

Untitled

a guest
Oct 12th, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.01 KB | None | 0 0
  1.  
  2. <nav aria-label="breadcrumb">
  3.     <ol class="breadcrumb">
  4.         <li class="breadcrumb-item"><a href="/">Главная</a></li>
  5.  
  6.         {% if this.page.id != 'catalog' %}
  7.             <li class="breadcrumb-item"><a href="#"><a href="{{ 'catalog'|page }}">Каталог</a></a></li>
  8.         {% else %}
  9.             <li class="breadcrumb-item active" aria-current="page">Каталог</li>
  10.         {% endif %}
  11.  
  12.         {% for arItem in arBreadcrumbs %}
  13.             {% if loop.last == true %}
  14.                 <li class="breadcrumb-item active" aria-current="page">{{ arItem.name }}</li>
  15.             {% else %}
  16.                 {% if arItem.item.nest_depth == 0 %}
  17.                     {% set sPage = 'category_list' %}
  18.                 {% else %}
  19.                     {% set sPage = 'product_list' %}
  20.                 {% endif %}
  21.                 <li class="breadcrumb-item"><a href="{{ arItem.item.getPageUrl(sPage) }}">{{ arItem.name }}</a></li>
  22.             {% endif %}
  23.         {% endfor %}
  24.     </ol>
  25. </nav>
  26.  
Advertisement
Add Comment
Please, Sign In to add comment