You are here

block-list.html.twig in Express 8

Two column template for the block add/edit form.

This template will be used when a block edit form specifies 'block_edit_form' as its #theme callback. Otherwise, by default, block add/edit forms will be themed by form.html.twig.

Available variables:

  • form: The block add/edit form.

File

themes/contrib/bootstrap/templates/block/block-list.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Two column template for the block add/edit form.
  5. *
  6. * This template will be used when a block edit form specifies 'block_edit_form'
  7. * as its #theme callback. Otherwise, by default, block add/edit forms will be
  8. * themed by form.html.twig.
  9. *
  10. * Available variables:
  11. * - form: The block add/edit form.
  12. *
  13. * @ingroup templates
  14. */
  15. #}
  16. <div class="row">
  17. <div class="col-xs-9">
  18. {{ form|without('place_blocks') }}
  19. </div>
  20. <div class="col-xs-3">
  21. {{ form.place_blocks }}
  22. </div>
  23. </div>