system-plugin-ui-form.html.twig

Default theme implementation to configure blocks.

Available variables:

  • form: The form elements which contains:

    • left: Form elements that appear in the left column.
    • right: Form elements that appear in the right column.

See also

template_preprocess()

template_preprocess_system_plugin_ui_form()

File

drupal/core/modules/system/templates/system-plugin-ui-form.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to configure blocks.
  5. *
  6. * Available variables:
  7. * - form: The form elements which contains:
  8. * - left: Form elements that appear in the left column.
  9. * - right: Form elements that appear in the right column.
  10. *
  11. * @see template_preprocess()
  12. * @see template_preprocess_system_plugin_ui_form()
  13. *
  14. * @ingroup themeable
  15. */
  16. #}
  17. <div id="block-library" class="container">
  18. <div class="left-col">
  19. <div class="inside">
  20. {{ form.left }}
  21. </div>
  22. </div>
  23. <div class="right-col">
  24. <div class="inside">
  25. {{ form.right }}
  26. </div>
  27. </div>
  28. {% if form -%}
  29. <div class="bottom-bar">{{ form }}</div>
  30. {%- endif -%}
  31. </div>

Related topics