views-view-grouping.html.twig

Default theme implementation to display a single views grouping.

Available variables:

  • view: The view object.
  • grouping: The grouping instruction.
  • grouping_level: A number indicating the hierarchical level of the grouping.
  • title: The group heading.
  • content: The content to be grouped.
  • rows: The rows returned from the view.

See also

template_preprocess()

template_preprocess_views_view_grouping()

File

drupal/core/modules/views/templates/views-view-grouping.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a single views grouping.
  5. *
  6. * Available variables:
  7. * - view: The view object.
  8. * - grouping: The grouping instruction.
  9. * - grouping_level: A number indicating the hierarchical level of the grouping.
  10. * - title: The group heading.
  11. * - content: The content to be grouped.
  12. * - rows: The rows returned from the view.
  13. *
  14. * @see template_preprocess()
  15. * @see template_preprocess_views_view_grouping()
  16. *
  17. * @ingroup themeable
  18. */
  19. #}
  20. <div class="view-grouping">
  21. <div class="view-grouping-header">{{ title }}</div>
  22. <div class="view-grouping-content">{{ content }}</div>
  23. </div>

Related topics