You are here

minisite-widget.html.twig in Mini site 8

Default theme implementation for a minisite field widget.

Available variables:

  • attributes: HTML attributes for the containing element.
  • data: Render elements of the minisite widget.

File

templates/minisite-widget.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a minisite field widget.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the containing element.
  8. * - data: Render elements of the minisite widget.
  9. *
  10. * @see template_preprocess_minisite_widget()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <div{{ attributes }}>
  16. {{ data }}
  17. </div>