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

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 also

template_preprocess_views_slideshow_controls_text_pause()

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.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a views slideshow text pause control.
  5. *
  6. * Available variables:
  7. * - classes: Classes to apply to the control.
  8. * - start_text: Text to display while playing.
  9. * - vss_id: The slideshow's id.
  10. *
  11. * @see template_preprocess_views_slideshow_controls_text_pause()
  12. *
  13. * @ingroup vss_templates
  14. */
  15. #}
  16. <span id="views_slideshow_controls_text_pause_{{ vss_id }}" {{ attributes.addClass(classes) }}>
  17. <a href="#">{{ start_text }}</a>
  18. </span>

Related topics