You are here

views-view-jquery-carousel.html.twig in jQuery carousel 8

Default theme implementation for views to display results in jquery carousel.

Available variables:

  • title: The title of this group of rows.
  • view: The view object.
  • rows: The rendered view results.
  • selector_class: The Selector class for this carousel configuration.

File

templates/views-view-jquery-carousel.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for views to display results in jquery carousel.
  5. *
  6. * Available variables:
  7. * - title: The title of this group of rows.
  8. * - view: The view object.
  9. * - rows: The rendered view results.
  10. * - selector_class: The Selector class for this carousel configuration.
  11. *
  12. * @see template_preprocess_views_view_jquery_carousel()
  13. *
  14. * @ingroup themeable
  15. */
  16. #}
  17. <div{{- selector_class -}}>
  18. <ul>
  19. {% for row in rows %}
  20. <li>
  21. {{ row }}
  22. </li>
  23. {% endfor %}
  24. </ul>
  25. </div>