Same filename and directory in other branches
  1. 8.x-3.x templates/views-slideshow-pager-fields.html.twig 1 comment
  2. 8.x-4.x templates/views-slideshow-pager-fields.html.twig 1 comment

Default theme implementation for a views slideshow pager item.

Available variables:

  • classes: Classes to apply to the element.
  • rendered_field_items: The individual pager elements.
  • widget_id: The pager id.

See also

template_preprocess_views_slideshow_pager_field_item()

File

templates/views-slideshow-pager-fields.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a views slideshow pager item.
  5. *
  6. * Available variables:
  7. * - classes: Classes to apply to the element.
  8. * - rendered_field_items: The individual pager elements.
  9. * - widget_id: The pager id.
  10. *
  11. * @see template_preprocess_views_slideshow_pager_field_item()
  12. *
  13. * @ingroup vss_templates
  14. */
  15. #}
  16. <div id="{{ widget_id }}" {{ attributes.addClass(classes) }}>
  17. {{ rendered_field_items }}
  18. </div>

Related topics