You are here

entity-embed-container.html.twig in Entity Embed 8

Default theme implementation of a container used to wrap embedded entities.

Available variables:

  • attributes: HTML attributes for the containing element.
  • children: The rendered child elements of the container.

File

templates/entity-embed-container.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of a container used to wrap embedded entities.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the containing element.
  8. * - children: The rendered child elements of the container.
  9. *
  10. * @see template_preprocess_entity_embed_container()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <div{{ attributes }}>{{ children }}</div>