You are here

checkboxes.html.twig in Zircon Profile 8.0

Theme override for a 'checkboxes' #type form element.

Available variables

  • attributes: A list of HTML attributes for the wrapper element.
  • children: The rendered checkboxes.

File

core/themes/stable/templates/form/checkboxes.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a 'checkboxes' #type form element.
  5. *
  6. * Available variables
  7. * - attributes: A list of HTML attributes for the wrapper element.
  8. * - children: The rendered checkboxes.
  9. *
  10. * @see template_preprocess_checkboxes()
  11. */
  12. @todo: remove this file once https://www.drupal.org/node/1819284 is resolved.
  13. This is identical to core/modules/system/templates/container.html.twig
  14. #}
  15. <div{{ attributes.addClass('form-checkboxes') }}>{{ children }}</div>