templates/includes/html/breadcrump.html.twig line 1

Open in your IDE?
  1. {% if showBreadcrumbs %}
  2.   {% set breadbrumbs = pimcore_build_nav({
  3.     active: document,
  4.     root: mainNavStartNode
  5.   }) %}
  6.   {% do app_navigation_enrich_breadcrumbs(breadbrumbs) %}
  7.   {% do pimcore_nav_renderer('breadcrumbs').setMinDepth(null) %}
  8.   <div class="breadcrumb-header">
  9.     {% if  pimcore_site_is_request() %}
  10.       <a href="/">{{ pimcore_site_current().rootDocument.getProperty('navigation_name') }}</a> &gt
  11.     {% else %}
  12.       <a href="/">{{ "Home"|trans }}</a> &gt
  13.     {% endif %}
  14.     {{ pimcore_render_nav(breadbrumbs, 'breadcrumbs') }}
  15.   </div>
  16. {% endif %}