custom/plugins/theme/src/Resources/views/storefront/layout/header/top-bar.html.twig line 1

Open in your IDE?
  1. {% block layout_header_top_bar %}
  2.     <div class="top-bar d-none d-lg-block border-bottom">
  3.         <nav class="container top-bar-nav dc-my-3">
  4.             <ul class="d-flex list-style-none mb-0">
  5.             {% for category in page.getExtension("topbar").all() %}
  6.                 <li class="topbar-list-category dc-ml-6">
  7.                 <a class="link-secondary font-small" title="{{category.translated.name}}" href="{{category_url(category)}}">{{category.translated.name}}</a>
  8.                 </li>
  9.             {% endfor %}
  10.             </ul>
  11.         </nav>
  12.     </div>
  13. {% endblock %}