You are here

entity-submenu.html.twig in Entity Submenu Block 8

Default theme implementation to display an entity submenu.

Available variables:

  • menu_name: The menu name, or NULL if the the active trail is not in the Entity Submenu Block's menu.
  • menu_items: The submenu items. Empty if the page is a leaf in the menu tree.

File

templates/entity-submenu.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display an entity submenu.
  5. *
  6. * Available variables:
  7. * - menu_name: The menu name, or NULL if the the active trail is not in the
  8. * Entity Submenu Block's menu.
  9. * - menu_items: The submenu items. Empty if the page is a leaf in the menu
  10. * tree.
  11. */
  12. #}
  13. <div class="entity-submenu">
  14. {{ menu_items }}
  15. </div>