Mercurial > hg > cmmr2012-drupal-site
annotate core/themes/classy/templates/views/views-view-grouping.html.twig @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | c75dbcec494b |
children |
rev | line source |
---|---|
Chris@0 | 1 {# |
Chris@0 | 2 /** |
Chris@0 | 3 * @file |
Chris@0 | 4 * Theme override to display a single views grouping. |
Chris@0 | 5 * |
Chris@0 | 6 * Available variables: |
Chris@0 | 7 * - view: The view object. |
Chris@0 | 8 * - grouping: The grouping instruction. |
Chris@0 | 9 * - grouping_level: A number indicating the hierarchical level of the grouping. |
Chris@0 | 10 * - title: The group heading. |
Chris@0 | 11 * - content: The content to be grouped. |
Chris@0 | 12 * - rows: The rows returned from the view. |
Chris@0 | 13 * |
Chris@0 | 14 * @see template_preprocess_views_view_grouping() |
Chris@0 | 15 */ |
Chris@0 | 16 #} |
Chris@0 | 17 <div class="view-grouping"> |
Chris@0 | 18 <div class="view-grouping-header">{{ title }}</div> |
Chris@0 | 19 <div class="view-grouping-content">{{ content }}</div> |
Chris@0 | 20 </div> |