Added another front page space for Yaffs info. Added roave security for composer.
[yaffs-website] / web / core / themes / stable / templates / views / views-view-summary.html.twig
1 {#
2 /**
3  * @file
4  * Theme override to display a list of summary lines.
5  *
6  * Available variables:
7  * - rows: The rows contained in this view.
8  *   Each row contains:
9  *   - url: The summary link URL.
10  *   - link: The summary link text.
11  *   - count: The number of items under this grouping.
12  *   - attributes: HTML attributes to apply to each row.
13  *   - active: A flag indicating whtether the row is active.
14  * - options: Flags indicating how the summary should be displayed.
15  *   This contains:
16  *   - count: A flag indicating whether the count should be displayed.
17  *
18  * @see template_preprocess_views_view_summary()
19  */
20 #}
21 <ul>
22   {% for row in rows %}
23     <li><a href="{{ row.url }}"{{ row.attributes.addClass(row.active ? 'is-active')|without('href') }}>{{ row.link }}</a>
24       {% if options.count %}
25         ({{ row.count }})
26       {% endif %}
27     </li>
28   {% endfor %}
29 </ul>