views-view-grouping.html.twig 569 B

1234567891011121314151617181920
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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_views_view_grouping()
  15. */
  16. #}
  17. <div class="view-grouping">
  18. <div class="view-grouping-header">{{ title }}</div>
  19. <div class="view-grouping-content">{{ content }}</div>
  20. </div>