entity-page-title.html.twig in Manage display 8
Default theme implementation for entity page title.
Available variables:
- attributes: HTML attributes for the containing span element.
- title: Entity label
2 theme calls to entity-page-title.html.twig
- ManageDisplayEntityViewController::buildTitle in modules/
manage_display_fix_title/ src/ Controller/ ManageDisplayEntityViewController.php - Pre-render callback to build the page title.
- ManageDisplayNodeViewController::buildTitle in modules/
manage_display_fix_title/ src/ Controller/ ManageDisplayNodeViewController.php - Pre-render callback to build the page title.
File
modules/manage_display_fix_title/templates/entity-page-title.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for entity page title.
- *
- * Available variables:
- * - attributes: HTML attributes for the containing span element.
- * - title: Entity label
- *
- * @ingroup themeable
- */
- #}
- <span{{ attributes }}>
- {{ title }}
- </span>