views-slideshow-controls-text-pause.html.twig in Views Slideshow 8.4
Same filename and directory in other branches
Default theme implementation for a views slideshow text pause control.
Available variables:
- classes: Classes to apply to the control.
- start_text: Text to display while playing.
- vss_id: The slideshow's id.
1 theme call to views-slideshow-controls-text-pause.html.twig
- template_preprocess_views_slideshow_controls_text in ./
views_slideshow.theme.inc - The slideshow controls.
File
templates/views-slideshow-controls-text-pause.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for a views slideshow text pause control.
- *
- * Available variables:
- * - classes: Classes to apply to the control.
- * - start_text: Text to display while playing.
- * - vss_id: The slideshow's id.
- *
- * @see template_preprocess_views_slideshow_controls_text_pause()
- *
- * @ingroup vss_templates
- */
- #}
- <span id="views_slideshow_controls_text_pause_{{ vss_id }}" {{ attributes.addClass(classes) }}>
- <a href="#">{{ start_text }}</a>
- </span>