Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / themes / classy / templates / views / views-view-summary-unformatted.html.twig
1 {#
2 /**
3  * @file
4  * Theme override for unformatted summary links.
5  *
6  * Available variables:
7  * - rows: The rows contained in this view.
8  *   - url: The URL to this row's content.
9  *   - count: The number of items this summary item represents.
10  *   - separator: A separator between each row.
11  *   - attributes: HTML attributes for a row.
12  *   - active: A flag indicating whether the row is active.
13  * - options: Flags indicating how each row should be displayed. This contains:
14  *   - count: A flag indicating whether the row's 'count' should be displayed.
15  *   - inline: A flag indicating whether the item should be wrapped in an inline
16  *     or block level HTML element.
17  *
18  * @see template_preprocess_views_view_summary_unformatted()
19  */
20 #}
21 {% for row in rows  %}
22   {{ options.inline ? '<span' : '<div' }} class="views-summary views-summary-unformatted">
23   {% if row.separator -%}
24     {{ row.separator }}
25   {%- endif %}
26   <a href="{{ row.url }}"{{ row.attributes.addClass(row.active ? 'is-active')|without('href') }}>{{ row.link }}</a>
27   {% if options.count %}
28     ({{ row.count }})
29   {% endif %}
30   {{ options.inline ? '</span>' : '</div>' }}
31 {% endfor %}