You are here

form--layout-builder-form--gin-lb.html.twig in Gin Layout Builder 1.0.x

Theme override for a 'form' element.

Available variables

  • attributes: A list of HTML attributes for the wrapper element.
  • children: The child elements of the form.

File

templates/form/form--layout-builder-form--gin-lb.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a 'form' element.
  5. *
  6. * Available variables
  7. * - attributes: A list of HTML attributes for the wrapper element.
  8. * - children: The child elements of the form.
  9. *
  10. * @see template_preprocess_form()
  11. */
  12. #}
  13. <div class="glb-toolbar glb-toolbar--small">
  14. <div class="glb-toolbar__titelbar">
  15. <div class="glb-toolbar__title">{{ "Layout builder setting"|t }}</div>
  16. <div class="glb-toolbar__close"></div>
  17. </div>
  18. <form{{ attributes }}>
  19. {{ children }}
  20. </form>
  21. </div>