You are here

slick-test.html.twig in Slick Carousel 8

Same filename and directory in other branches
  1. 8.2 tests/modules/slick_test/templates/slick-test.html.twig

Default theme implementation for the slick-test template.

Available variables:

  • attributes: An array of attributes to apply to the element.
  • content: A renderable array of the content.
  • settings: An array containing the given settings.

File

tests/modules/slick_test/templates/slick-test.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for the slick-test template.
  5. *
  6. * Available variables:
  7. * - attributes: An array of attributes to apply to the element.
  8. * - content: A renderable array of the content.
  9. * - settings: An array containing the given settings.
  10. *
  11. * @see template_preprocess_slick_test()
  12. */
  13. #}
  14. <div{{ attributes.addClass('slick-test') }}>
  15. {{ content }}
  16. </div>