You are here

block-list.html.twig in Zircon Profile 8.0

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

core/themes/stable/templates/admin/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. #}
  14. <div class="layout-block-list clearfix">
  15. <div class="layout-region block-list-primary">
  16. {{ form|without('place_blocks') }}
  17. </div>
  18. <div class="layout-region block-list-secondary">
  19. {{ form.place_blocks }}
  20. </div>
  21. </div>