block-content-add-list.html.twig

Same filename in this branch
  1. 9 core/themes/stable9/templates/admin/block-content-add-list.html.twig
  2. 9 core/themes/claro/templates/block-content-add-list.html.twig
  3. 9 core/themes/stable/templates/admin/block-content-add-list.html.twig
  4. 9 core/modules/block_content/templates/block-content-add-list.html.twig
Same filename in other branches
  1. 8.9.x core/themes/seven/templates/block-content-add-list.html.twig
  2. 8.9.x core/themes/claro/templates/block-content-add-list.html.twig
  3. 8.9.x core/themes/stable/templates/admin/block-content-add-list.html.twig
  4. 8.9.x core/modules/block_content/templates/block-content-add-list.html.twig
  5. 10 core/themes/stable9/templates/admin/block-content-add-list.html.twig
  6. 10 core/themes/claro/templates/block-content-add-list.html.twig
  7. 10 core/modules/block_content/templates/block-content-add-list.html.twig
  8. 11.x core/themes/stable9/templates/admin/block-content-add-list.html.twig
  9. 11.x core/themes/claro/templates/block-content-add-list.html.twig
  10. 11.x core/modules/block_content/templates/block-content-add-list.html.twig

Seven's theme implementation to display a list of custom block types.

Displays the list of available custom block types for creation.

Available variables:

  • types: A collection of all the available custom block types. Each type contains:

    • url: A link to add a block of this type.
    • description: A description of this custom block type.
    • label: The title of the custom block type.
    • path: A path for the link to add a block of this type.

See also

template_preprocess_block_content_add_list()

seven_preprocess_block_content_add_list()

1 theme call to block-content-add-list.html.twig
BlockContentController::add in core/modules/block_content/src/Controller/BlockContentController.php
Displays add custom block links for available types.

File

core/themes/seven/templates/block-content-add-list.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Seven's theme implementation to display a list of custom block types.
  5. *
  6. * Displays the list of available custom block types for creation.
  7. *
  8. * Available variables:
  9. * - types: A collection of all the available custom block types.
  10. * Each type contains:
  11. * - url: A link to add a block of this type.
  12. * - description: A description of this custom block type.
  13. * - label: The title of the custom block type.
  14. * - path: A path for the link to add a block of this type.
  15. *
  16. * @see template_preprocess_block_content_add_list()
  17. * @see seven_preprocess_block_content_add_list()
  18. */
  19. #}
  20. <ul class="admin-list">
  21. {% for type in types %}
  22. <li class="clearfix">
  23. <a href="{{ type.url }}"><span class="label">{{ type.label }}</span><div class="description">{{ type.description }}</div></a>
  24. </li>
  25. {% endfor %}
  26. </ul>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.