views-view-summary-unformatted.html.twig

Default theme implementation for unformatted summary links.

Available variables:

  • rows: The rows contained in this view.

    • url: The URL to this row's content.
    • count: The number of items this summary item represents.
    • separator: A separator between each row.
  • row_classes: HTML attributes for a row, either containing an 'active' class or no attributes, that correlate to each row by ID.
  • options: Flags indicating how each row should be displayed. This contains:
    • count: A flag indicating whether the row's 'count' should be displayed.
    • inline: A flag indicating whether the item should be wrapped in an inline or block level HTML element.

See also

template_preprocess()

template_preprocess_views_view_summary_unformatted()

File

drupal/core/modules/views/templates/views-view-summary-unformatted.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation 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. * - row_classes: HTML attributes for a row, either containing an 'active' class
  12. * or no attributes, that correlate to each row by ID.
  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()
  19. * @see template_preprocess_views_view_summary_unformatted()
  20. *
  21. * @ingroup themeable
  22. */
  23. #}
  24. {% for id, row in rows %}
  25. {{ options.inline ? '<span' : '<div' }} class="views-summary views-summary-unformatted">
  26. {% if row.separator -%}
  27. {{ row.separator }}
  28. {%- endif %}
  29. <a href="{{ row.url }}"{{ row_classes[id] }}>{{ row.link }}</a>
  30. {% if options.count %}
  31. ({{ row.count }})
  32. {% endif %}
  33. {{ options.inline ? '</span>' : '</div>' }}
  34. {% endfor %}

Related topics