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

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.
1 theme call to views-slideshow-main-section.html.twig
_views_slideshow_preprocess_views_view_slideshow in ./views_slideshow.theme.inc
Views Slideshow: slideshow.

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