You are here

views-ui-container.html.twig in Zircon Profile 8.0

Default theme implementation for a generic views UI container/wrapper.

Available variables:

  • attributes: HTML attributes to apply to the container element.
  • children: The remaining elements such as dropbuttons and tabs.

See also

template_preprocess_views_ui_container()

File

core/modules/views_ui/templates/views-ui-container.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a generic views UI container/wrapper.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes to apply to the container element.
  8. * - children: The remaining elements such as dropbuttons and tabs.
  9. *
  10. * @see template_preprocess_views_ui_container()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <div{{ attributes }}>{{ children }}</div>

Related topics