You are here

flickity-item.html.twig in Flickity Carousel 3.0.x

Default theme implementation to display a Flickity item.

Available variables:

  • item: The row item content.
  • attributes: The row item attributes.

File

templates/flickity-item.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a Flickity item.
  5. *
  6. * Available variables:
  7. * - item: The row item content.
  8. * - attributes: The row item attributes.
  9. *
  10. */
  11. #}
  12. <div {{ attributes }} > {{ item }} </div>