templates/Slivki/breadcrumbs_footer.html.twig line 1

Open in your IDE?
  1. <div class="breadcrumbs-footer" {{ absoluteBreadcrubs is defined and absoluteBreadcrubs ? 'style="position: absolute"' }}>
  2.     <a href="{{ base_url }}">Главная</a>
  3.     {% for category in parentCategoryList %}
  4.         <i class="fa fa-angle-right"></i>&nbsp;<a href="{{ getCategoryURL(category) }}">{{ category.getName() }}</a>
  5.     {% endfor %}
  6.     {% if title %}
  7.         <i class="fa fa-angle-right"></i>
  8.         {{ title }}
  9.     {% endif %}
  10. </div>