render-example-marquee.html.twig

Same filename in other branches
  1. 3.x modules/render_example/templates/render-example-marquee.html.twig
  2. 4.0.x modules/render_example/templates/render-example-marquee.html.twig

Default theme implementation for the marquee render element.

Available variables:

  • attributes: Attributes for the marguee tag.
  • content: The text to display within the marquee tag.
1 theme call to render-example-marquee.html.twig
Marquee::getInfo in render_example/src/Element/Marquee.php

File

render_example/templates/render-example-marquee.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for the marquee render element.
  5. *
  6. * Available variables:
  7. * - attributes: Attributes for the marguee tag.
  8. * - content: The text to display within the marquee tag.
  9. *
  10. * @ingroup themeable
  11. * @ingroup render_example
  12. */
  13. #}
  14. <marquee{{ attributes }}>{{ content }}</marquee>

Related topics