25 lines
529 B
Twig
25 lines
529 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Default theme implementation to display a view of unformatted rows.
|
|
*
|
|
* Available variables:
|
|
* - title: The title of this group of rows. May be empty.
|
|
* - rows: A list of the view's row items.
|
|
* - attributes: The row's HTML attributes.
|
|
* - content: The row's content.
|
|
*
|
|
* @see template_preprocess_views_view_unformatted()
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
#}
|
|
{% if title %}
|
|
<h3>{{ title }}</h3>
|
|
{% endif %}
|
|
{% for row in rows %}
|
|
<div{{ row.attributes }}>
|
|
{{ row.content }}
|
|
</div>
|
|
{% endfor %}
|