You are here

render-example-marquee.html.twig in Examples for Developers 8

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.

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