You are here

views-slideshow-controls-text-pause.html.twig in Views Slideshow 8.4

Same filename and directory in other branches
  1. 8.3 templates/views-slideshow-controls-text-pause.html.twig

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.

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