Dev schedule config and styling

This commit is contained in:
Rob Davies 2017-06-20 12:26:26 +01:00
parent 62b33791d0
commit f522a186c1
7 changed files with 422 additions and 20 deletions

View file

@ -0,0 +1,20 @@
{#
/**
* @file
* Theme override 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 template_preprocess_views_view_grouping()
*/
#}
<div class="view-grouping">
<div class="view-grouping-header">{{ title }}</div>
<div class="view-grouping-content col-{{ rows|length }}">{{ content }}</div>
</div>