You are here

views-entity-embed-container.html.twig in Views entity embed 2.0.x

Same filename and directory in other branches
  1. 8 templates/views-entity-embed-container.html.twig

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

Available variables:

  • attributes: HTML attributes for the containing element.
  • view: The rendered view element.

File

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