4860e08f25e4a8df629b2e28a07d4b19bc425fa9
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / plugin / views / style-template.twig
1 {{ '{#' }}
2 /**
3  * @file
4  * Default theme implementation 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.
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  *
13  * @see template_preprocess_views_style_{{ plugin_id }}()
14  */
15 {{ '#}' }}{% verbatim %}
16 <div{{ attributes }}>
17
18   {% for row in rows %}
19     <div{{ row.attributes }}>{{ row.content }}</div>
20   {% endfor %}
21
22 </div>{% endverbatim %}