You are here

flexslider-list.html.twig in Flex Slider 8.2

Default theme implementation for the Flexslider list wrapper template.

Available variables:

  • attributes: An array of attributes to apply to the element.
  • settings.type: The wrapper type. (ul or ol)
  • content.list: The array of slides
  • settings: An array containing the given settings.

File

templates/flexslider-list.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for the Flexslider list wrapper template.
  5. *
  6. * Available variables:
  7. * - attributes: An array of attributes to apply to the element.
  8. * - settings.type: The wrapper type. (ul or ol)
  9. * - content.list: The array of slides
  10. * - settings: An array containing the given settings.
  11. *
  12. * @see template_preprocess_flexslider_list()
  13. */
  14. #}
  15. <{{ settings.type }}{{ attributes }}>
  16. {{ content.list }}
  17. </{{ settings.type }}>