render-example-marquee.html.twig
Same filename in other branches
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 modules/
render_example/ src/ Element/ Marquee.php - Returns the element properties for this element.
File
-
modules/
render_example/ templates/ render-example-marquee.html.twig
View source
- {#
- /**
- * @file
- * 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.
- *
- * @ingroup themeable
- * @ingroup render_example
- */
- #}
- <marquee{{ attributes }}>{{ content }}</marquee>