Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation for a view template to display a list of rows. Chris@0: * Chris@0: * Available variables: Chris@0: * - attributes: HTML attributes for the container. Chris@0: * - rows: A list of rows for this list. Chris@0: * - attributes: The row's HTML attributes. Chris@0: * - content: The row's contents. Chris@0: * - title: The title of this group of rows. May be empty. Chris@0: * - list: @todo. Chris@0: * - type: Starting tag will be either a ul or ol. Chris@0: * - attributes: HTML attributes for the list element. Chris@0: * Chris@0: * @see template_preprocess_views_view_list() Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0: {% if attributes -%} Chris@0: Chris@0: {% endif %} Chris@0: {% if title %} Chris@0:

{{ title }}

Chris@0: {% endif %} Chris@0: Chris@0: <{{ list.type }}{{ list.attributes }}> Chris@0: Chris@0: {% for row in rows %} Chris@16: Chris@16: {{- row.content -}} Chris@16: Chris@0: {% endfor %} Chris@0: Chris@0: Chris@0: Chris@0: {% if attributes -%} Chris@0: Chris@0: {% endif %}