views-view-summary-unformatted.html.twig

Same filename in this branch
  1. 9 core/themes/stable9/templates/views/views-view-summary-unformatted.html.twig
  2. 9 core/themes/seven/templates/classy/views/views-view-summary-unformatted.html.twig
  3. 9 core/themes/claro/templates/classy/views/views-view-summary-unformatted.html.twig
  4. 9 core/themes/bartik/templates/classy/views/views-view-summary-unformatted.html.twig
  5. 9 core/themes/stable/templates/views/views-view-summary-unformatted.html.twig
  6. 9 core/themes/starterkit_theme/templates/views/views-view-summary-unformatted.html.twig
  7. 9 core/themes/classy/templates/views/views-view-summary-unformatted.html.twig
  8. 9 core/modules/views/templates/views-view-summary-unformatted.html.twig
Same filename and directory in other branches
  1. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/views/views-view-summary-unformatted.html.twig
  2. 8.9.x core/themes/seven/templates/classy/views/views-view-summary-unformatted.html.twig
  3. 8.9.x core/themes/claro/templates/classy/views/views-view-summary-unformatted.html.twig
  4. 8.9.x core/themes/bartik/templates/classy/views/views-view-summary-unformatted.html.twig
  5. 8.9.x core/themes/stable/templates/views/views-view-summary-unformatted.html.twig
  6. 8.9.x core/themes/classy/templates/views/views-view-summary-unformatted.html.twig
  7. 8.9.x core/modules/views/templates/views-view-summary-unformatted.html.twig
  8. 10 core/profiles/demo_umami/themes/umami/templates/classy/views/views-view-summary-unformatted.html.twig
  9. 10 core/themes/stable9/templates/views/views-view-summary-unformatted.html.twig
  10. 10 core/themes/claro/templates/classy/views/views-view-summary-unformatted.html.twig
  11. 10 core/themes/starterkit_theme/templates/views/views-view-summary-unformatted.html.twig
  12. 10 core/modules/views/templates/views-view-summary-unformatted.html.twig
  13. 11.x core/profiles/demo_umami/themes/umami/templates/classy/views/views-view-summary-unformatted.html.twig
  14. 11.x core/themes/stable9/templates/views/views-view-summary-unformatted.html.twig
  15. 11.x core/themes/claro/templates/classy/views/views-view-summary-unformatted.html.twig
  16. 11.x core/themes/starterkit_theme/templates/views/views-view-summary-unformatted.html.twig
  17. 11.x core/modules/views/templates/views-view-summary-unformatted.html.twig

Theme override 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/profiles/demo_umami/themes/umami/templates/classy/views/views-view-summary-unformatted.html.twig

View source
  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 %}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.