You are here

views-slideshow-main-section.html.twig in Views Slideshow 8.4

Same filename and directory in other branches
  1. 8.3 templates/views-slideshow-main-section.html.twig

Default theme implementation for a views slideshow pager item.

Available variables:

  • plugin: The main frame slideshow plugin.
  • slides: The slides.
  • vss_id: The slideshow's id.

File

templates/views-slideshow-main-section.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a views slideshow pager item.
  5. *
  6. * Available variables:
  7. * - plugin: The main frame slideshow plugin.
  8. * - slides: The slides.
  9. * - vss_id: The slideshow's id.
  10. *
  11. * @ingroup vss_templates
  12. */
  13. #}
  14. <div id="{{ plugin }}_main_{{ vss_id }}" class="{{ plugin }}_main views_slideshow_main">
  15. {{ slides }}
  16. </div>

Related topics