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.
See also
File
templates/entity-embed-container.html.twigView source
- {#
- /**
- * @file
- * 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.
- *
- * @see template_preprocess_entity_embed_container()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes }}>{{ children }}</div>