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

Default theme implementation for an views slideshow cycle main frame.

Available variables:

  • classes: Classes to apply to the element.
  • rendered_rows: The slides.
  • vss_id: The slideshow id.

See also

template_preprocess_views_slideshow_cycle_main_frame()

File

modules/views_slideshow_cycle/templates/views-slideshow-cycle-main-frame.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for an views slideshow cycle main frame.
  5. *
  6. * Available variables:
  7. * - classes: Classes to apply to the element.
  8. * - rendered_rows: The slides.
  9. * - vss_id: The slideshow id.
  10. *
  11. * @see template_preprocess_views_slideshow_cycle_main_frame()
  12. *
  13. * @ingroup vss_templates
  14. */
  15. #}
  16. <div id="views_slideshow_cycle_teaser_section_{{ vss_id }}" {{ attributes.addClass(classes) }}>
  17. {% for rendered_row in rendered_rows %}
  18. {{ rendered_row }}
  19. {% endfor %}
  20. </div>

Related topics