views-slideshow-pager-field-item.html.twig in Views Slideshow 8.4
Same filename and directory in other branches
Default theme implementation for a views slideshow pager item.
Available variables:
- classes: Classes to apply to the element.
- count: The page number.
- location: Location of pager.
- item: Rendered field(s) making up item.
- vss_id: The slideshow's id.
2 theme calls to views-slideshow-pager-field-item.html.twig
- template_preprocess_views_slideshow_pager_fields in ./
views_slideshow.theme.inc - Theme pager fields.
- _views_slideshow_cycle_preprocess_views_slideshow_pager_fields in modules/
views_slideshow_cycle/ views_slideshow_cycle.theme.inc - Implements hook_preprocess_views_slideshow_pager_fields().
File
templates/views-slideshow-pager-field-item.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for a views slideshow pager item.
- *
- * Available variables:
- * - classes: Classes to apply to the element.
- * - count: The page number.
- * - location: Location of pager.
- * - item: Rendered field(s) making up item.
- * - vss_id: The slideshow's id.
- *
- * @see template_preprocess_views_slideshow_pager_field_item()
- *
- * @ingroup vss_templates
- */
- #}
- <div id="views_slideshow_pager_field_item_{{ location }}_{{ vss_id }}_{{ count }}" {{ attributes.addClass(classes) }}>
- {{ item }}
- </div>