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

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.

See also

template_preprocess_views_slideshow_controls_text_previous()

1 theme call to views-slideshow-controls-text-previous.html.twig
template_preprocess_views_slideshow_controls_text in ./views_slideshow.theme.inc
The slideshow controls.

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