Same filename in this branch
  1. 10 core/modules/views/templates/views-view-summary-unformatted.html.twig
  2. 10 core/themes/stable9/templates/views/views-view-summary-unformatted.html.twig
  3. 10 core/themes/starterkit_theme/templates/views/views-view-summary-unformatted.html.twig
  4. 10 core/themes/claro/templates/classy/views/views-view-summary-unformatted.html.twig
  5. 10 core/profiles/demo_umami/themes/umami/templates/classy/views/views-view-summary-unformatted.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/views/templates/views-view-summary-unformatted.html.twig
  2. 9 core/modules/views/templates/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.
    • attributes: HTML attributes for a row.
    • active: A flag indicating whether the row is active.
  • 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_views_view_summary_unformatted()

File

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. * - 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. * @ingroup themeable
  21. */
  22. #}
  23. {% for row in rows %}
  24. {{ options.inline ? '<span' : '<div' }} >
  25. {% if row.separator -%}
  26. {{ row.separator }}
  27. {%- endif %}
  28. <a href="{{ row.url }}"{{ row.attributes.addClass(row.active ? 'is-active')|without('href') }}>{{ row.link }}</a>
  29. {% if options.count %}
  30. ({{ row.count }})
  31. {% endif %}
  32. {{ options.inline ? '</span>' : '</div>' }}
  33. {% endfor %}

Related topics