44d4766d44b20d97b3480a289f01320855412a34
[yaffs-website] / web / core / themes / classy / templates / views / views-view-list.html.twig
1 {#
2 /**
3  * @file
4  * Theme override for a view template to display a list of rows.
5  *
6  * Available variables:
7  * - attributes: HTML attributes for the container.
8  * - rows: A list of rows for this list.
9  *   - attributes: The row's HTML attributes.
10  *   - content: The row's contents.
11  * - title: The title of this group of rows. May be empty.
12  * - list: @todo.
13  *   - type: Starting tag will be either a ul or ol.
14  *   - attributes: HTML attributes for the list element.
15  *
16  * @see template_preprocess_views_view_list()
17  */
18 #}
19 {% if attributes -%}
20   <div{{ attributes }}>
21 {% endif %}
22   {% if title %}
23     <h3>{{ title }}</h3>
24   {% endif %}
25
26   <{{ list.type }}{{ list.attributes }}>
27
28     {% for row in rows %}
29       <li{{ row.attributes }}>{{ row.content }}</li>
30     {% endfor %}
31
32   </{{ list.type }}>
33
34 {% if attributes -%}
35   </div>
36 {% endif %}