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.
See also
1 theme call to flexslider-list.html.twig
- template_preprocess_flexslider in templates/
flexslider.theme.inc - Prepares variables for flexslider template.
File
templates/flexslider-list.html.twigView source
- {#
- /**
- * @file
- * 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.
- *
- * @see template_preprocess_flexslider_list()
- */
- #}
-
- <{{ settings.type }}{{ attributes }}>
- {{ content.list }}
- </{{ settings.type }}>