You are here

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

Theme override 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/themes/stable/templates/admin/views-ui-container.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  13. <div{{ attributes }}>{{ children }}</div>