Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

breadcrumb.html.twig

Same filename in this branch
  1. 11.1.x core/profiles/demo_umami/themes/umami/templates/components/navigation/breadcrumb.html.twig
  2. 11.1.x core/themes/stable9/templates/navigation/breadcrumb.html.twig
  3. 11.1.x core/themes/starterkit_theme/templates/navigation/breadcrumb.html.twig
  4. 11.1.x core/themes/claro/templates/breadcrumb.html.twig
  5. 11.1.x core/modules/system/templates/breadcrumb.html.twig

Theme override for a breadcrumb trail.

Available variables:

  • breadcrumb: Breadcrumb trail items.
1 theme call to breadcrumb.html.twig
Breadcrumb::toRenderable in core/lib/Drupal/Core/Breadcrumb/Breadcrumb.php
Returns a render array representation of the object.

File

core/themes/olivero/templates/navigation/breadcrumb.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a breadcrumb trail.
  5. *
  6. * Available variables:
  7. * - breadcrumb: Breadcrumb trail items.
  8. */
  9. #}
  10. {% if breadcrumb %}
  11. <nav class="breadcrumb" role="navigation" aria-labelledby="system-breadcrumb">
  12. <h2 id="system-breadcrumb" class="visually-hidden">{{ 'Breadcrumb'|t }}</h2>
  13. <div class="breadcrumb__content">
  14. <ol class="breadcrumb__list">
  15. {% for item in breadcrumb %}
  16. <li class="breadcrumb__item">
  17. {% if item.url %}
  18. <a href="{{ item.url }}" class="breadcrumb__link">{{ item.text }}</a>
  19. {% else %}
  20. {{ item.text }}
  21. {% endif %}
  22. </li>
  23. {% endfor %}
  24. </ol>
  25. </div>
  26. </nav>
  27. {% endif %}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal