blazy-test.html.twig in Blazy 8.2
Same filename and directory in other branches
Default theme implementation for the blazy-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.
See also
1 theme call to blazy-test.html.twig
- blazy_test_blazy_attach_alter in tests/
modules/ blazy_test/ blazy_test.module - Implements hook_blazy_attach_alter().
File
tests/modules/blazy_test/templates/blazy-test.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for the blazy-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.
- *
- * @see template_preprocess_blazy_test()
- */
- #}
- <div{{ attributes.addClass('blazy-test') }}>
- {{ content }}
- </div>