Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation to display a view of unformatted rows. Chris@0: * Chris@0: * Available variables: Chris@0: * - title: The title of this group of rows. May be empty. Chris@0: * - rows: A list of the view's row items. Chris@0: * - attributes: The row's HTML attributes. Chris@0: * - content: The row's content. Chris@0: * - view: The view object. Chris@0: * - default_row_class: A flag indicating whether default classes should be Chris@0: * used on rows. Chris@0: * Chris@0: * @see template_preprocess_views_view_unformatted() Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0: {% if title %} Chris@0:

{{ title }}

Chris@0: {% endif %} Chris@0: {% for row in rows %} Chris@0: {% Chris@0: set row_classes = [ Chris@0: default_row_class ? 'views-row', Chris@0: ] Chris@0: %} Chris@0: Chris@16: {{- row.content -}} Chris@0: Chris@0: {% endfor %}