You are here

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

File

modules/manage_display_fix_title/templates/entity-page-title.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for entity page title.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the containing span element.
  8. * - title: Entity label
  9. *
  10. * @ingroup themeable
  11. */
  12. #}
  13. <span{{ attributes }}>
  14. {{ title }}
  15. </span>