You are here

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

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

Default theme implementation for a views slideshow text previous control.

Available variables:

  • classes: Classes to apply to the control.
  • vss_id: The slideshow's id.

File

templates/views-slideshow-controls-text-previous.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a views slideshow text previous control.
  5. *
  6. * Available variables:
  7. * - classes: Classes to apply to the control.
  8. * - vss_id: The slideshow's id.
  9. *
  10. * @see template_preprocess_views_slideshow_controls_text_previous()
  11. *
  12. * @ingroup vss_templates
  13. */
  14. #}
  15. <span id="views_slideshow_controls_text_previous_{{ vss_id }}" {{ attributes.addClass(classes) }}>
  16. <a href="#">{{ 'Previous'|t }}</a>
  17. </span>

Related topics