Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation for unformatted summary links. Chris@0: * Chris@0: * Available variables: Chris@0: * - rows: The rows contained in this view. Chris@0: * - url: The URL to this row's content. Chris@0: * - count: The number of items this summary item represents. Chris@0: * - separator: A separator between each row. Chris@0: * - attributes: HTML attributes for a row. Chris@0: * - active: A flag indicating whether the row is active. Chris@0: * - options: Flags indicating how each row should be displayed. This contains: Chris@0: * - count: A flag indicating whether the row's 'count' should be displayed. Chris@0: * - inline: A flag indicating whether the item should be wrapped in an inline Chris@0: * or block level HTML element. Chris@0: * Chris@0: * @see template_preprocess_views_view_summary_unformatted() Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0: {% for row in rows %} Chris@0: {{ options.inline ? ' Chris@0: {% if row.separator -%} Chris@0: {{ row.separator }} Chris@0: {%- endif %} Chris@0: {{ row.link }} Chris@0: {% if options.count %} Chris@0: ({{ row.count }}) Chris@0: {% endif %} Chris@0: {{ options.inline ? '' : '' }} Chris@0: {% endfor %}